From c539b839e8facef7a97c7ab50262a6d409856acb Mon Sep 17 00:00:00 2001 From: Taylor Neyland <57606775+taneyland@users.noreply.github.com> Date: Mon, 10 Apr 2023 14:14:24 -0500 Subject: [PATCH] Conformance results for v1.26/eks-a (#2531) Signed-off-by: Taylor Neyland --- v1.26/eks-a/PRODUCT.yaml | 10 + v1.26/eks-a/README.md | 212 + v1.26/eks-a/e2e.log | 40175 +++++++++++++++++++++++++++++++++++++ v1.26/eks-a/junit_01.xml | 20499 +++++++++++++++++++ 4 files changed, 60896 insertions(+) create mode 100644 v1.26/eks-a/PRODUCT.yaml create mode 100644 v1.26/eks-a/README.md create mode 100644 v1.26/eks-a/e2e.log create mode 100644 v1.26/eks-a/junit_01.xml diff --git a/v1.26/eks-a/PRODUCT.yaml b/v1.26/eks-a/PRODUCT.yaml new file mode 100644 index 0000000000..891ff48bce --- /dev/null +++ b/v1.26/eks-a/PRODUCT.yaml @@ -0,0 +1,10 @@ +vendor: Amazon Web Services +name: Amazon Elastic Kubernetes Service Anywhere (Amazon EKS Anywhere) +version: v1.26.2 +website_url: https://aws.amazon.com/eks/eks-anywhere +repo_url: https://github.com/aws/eks-anywhere +documentation_url: https://anywhere.eks.amazonaws.com/ +product_logo_url: https://raw.githubusercontent.com/aws/eks-anywhere/main/docs/static/AWS_logo_RGB.svg +contact_email_address: tneyla@amazon.com +type: installer +description: Amazon EKS Anywhere is a new deployment option for Amazon EKS that allows customers to create and operate Kubernetes clusters on customer-managed infrastructure, supported by AWS. \ No newline at end of file diff --git a/v1.26/eks-a/README.md b/v1.26/eks-a/README.md new file mode 100644 index 0000000000..f07c936111 --- /dev/null +++ b/v1.26/eks-a/README.md @@ -0,0 +1,212 @@ +# Conformance testing Amazon EKS Anywhere + +## Setup EKS Anywhere Cluster + +Setup EKS Anywhere cluster according to the [EKS Anywhere documentation](https://anywhere.eks.amazonaws.com/). + +Create an [EKS Anywhere production cluster](https://anywhere.eks.amazonaws.com/docs/getting-started/production-environment/) to reproduce the EKS Anywhere Conformance e2e results. + + +## Requirements +Create a Kubernetes cluster on a target workload environment with EKS Anywhere run on an administrative machine. + +### Target Workload Environment + +The target workload environment will need: + +* A vSphere 7+ environment running vCenter +* Capacity to deploy 6-10VMs +* DHCP service running in vSphere environment in the primary VM network for your workload cluster +* One network in vSphere to use for the cluster. This network must have inbound access into vCenter +* A OVA imported into vSphere and converted into template for the workload VMs +* User credentials to [create vms and attach networks, etc](https://anywhere.eks.amazonaws.com/docs/reference/vsphere/user-permissions/) + +Each VM will require: + +* 2 vCPU +* 8GB RAM +* 25GB Disk + +### Administrative Machine + +The administrative machine will need: + +* Docker 20.x.x +* Mac OS (10.15) / Ubuntu (20.04.2 LTS) +* 4 CPU cores +* 16GB memory +* 30GB free disk space + +#### Kubectl + +On the administrative machine, install and configure the Kubernetes command-line tool +[kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) + +#### Docker + +The method to [install Docker](https://docs.docker.com/get-docker/) depends on your operating system and architecture. +If you are using Ubuntu use the [Docker CE](https://docs.docker.com/engine/install/ubuntu/) installation instructions to install Docker and not the Snap installation. + +#### EKS Anywhere + +Install [EKS Anywhere](https://anywhere.eks.amazonaws.com/docs/getting-started/install/) on your administrative machine. + +#### Sonobuoy + +Download a binary release of [sonobuoy](https://github.com/vmware-tanzu/sonobuoy/releases/). + +If you are on a Mac, you many need to open the Security & Privacy and approve sonobuoy for +execution. + +```shell +if [[ "$(uname)" == "Darwin" ]] +then + SONOBUOY=https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.50.0/sonobuoy_0.50.0_darwin_amd64.tar.gz +else + SONOBUOY=https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.50.0/sonobuoy_0.50.0_linux_386.tar.gz +fi +wget -qO- ${SONOBUOY} |tar -xz sonobuoy +chmod 755 sonobuoy +``` + +## Create EKS Anywhere Cluster + +1. Generate a cluster configuration: + + ```shell + CLUSTER_NAME=prod + eksctl anywhere generate clusterconfig $CLUSTER_NAME --provider vsphere >cluster.yaml + ``` + +1. Populate cluster configuration. For example: + + ```yaml + apiVersion: anywhere.eks.amazonaws.com/v1alpha1 + kind: Cluster + metadata: + name: prod + spec: + clusterNetwork: + cni: cilium + pods: + cidrBlocks: + - 192.168.0.0/16 + services: + cidrBlocks: + - 10.96.0.0/12 + controlPlaneConfiguration: + count: 2 + endpoint: + host: "198.18.100.79" + machineGroupRef: + kind: VSphereMachineConfig + name: prod-cp + datacenterRef: + kind: VSphereDatacenterConfig + name: prod + externalEtcdConfiguration: + count: 3 + machineGroupRef: + kind: VSphereMachineConfig + name: prod-etcd + kubernetesVersion: "1.26" + managementCluster: + name: prod + workerNodeGroupConfigurations: + - count: 2 + machineGroupRef: + kind: VSphereMachineConfig + name: prod + --- + apiVersion: anywhere.eks.amazonaws.com/v1alpha1 + kind: VSphereDatacenterConfig + metadata: + name: prod + spec: + datacenter: "SDDC-Datacenter" + insecure: false + network: "/SDDC-Datacenter/network/sddc-cgw-network-1" + server: "vcenter.sddc-44-239-186-141.vmwarevmc.com" + thumbprint: "" + --- + apiVersion: anywhere.eks.amazonaws.com/v1alpha1 + kind: VSphereMachineConfig + metadata: + name: prod-cp + spec: + datastore: "/SDDC-Datacenter/datastore/WorkloadDatastore" + diskGiB: 25 + folder: "/SDDC-Datacenter/vm/capv/prod" + memoryMiB: 8192 + numCPUs: 2 + osFamily: bottlerocket + resourcePool: "*/Resources/Compute-ResourcePool" + users: + - name: ec2-user + sshAuthorizedKeys: + - "ssh-rsa AAAA..." + --- + apiVersion: anywhere.eks.amazonaws.com/v1alpha1 + kind: VSphereMachineConfig + metadata: + name: prod + spec: + datastore: "/SDDC-Datacenter/datastore/WorkloadDatastore" + diskGiB: 25 + folder: "/SDDC-Datacenter/vm/capv/prod" + memoryMiB: 8192 + numCPUs: 2 + osFamily: bottlerocket + resourcePool: "*/Resources/Compute-ResourcePool" + users: + - name: ec2-user + sshAuthorizedKeys: + - "ssh-rsa AAAA..." + --- + apiVersion: anywhere.eks.amazonaws.com/v1alpha1 + kind: VSphereMachineConfig + metadata: + name: prod-etcd + spec: + datastore: "/SDDC-Datacenter/datastore/WorkloadDatastore" + diskGiB: 25 + folder: "/SDDC-Datacenter/vm/capv/prod" + memoryMiB: 8192 + numCPUs: 2 + osFamily: bottlerocket + resourcePool: "*/Resources/Compute-ResourcePool" + users: + - name: ec2-user + sshAuthorizedKeys: + - "ssh-rsa AAAA..." + ``` + +1. Set credential environment variables + + ```shell + export EKSA_VSPHERE_USERNAME='billy' + export EKSA_VSPHERE_PASSWORD='t0p$ecret' + ``` + +1. Create a cluster + + ```shell + eksctl anywhere create cluster -f cluster.yaml -v 4 + ``` + + +## Run Sonobuoy e2e +``` +./sonobuoy run --mode=certified-conformance +results=$(./sonobuoy retrieve) +mkdir ./results +tar xzf $results -C ./results +./sonobuoy e2e ${results} +mv results/plugins/e2e/results/global/* . +``` + +## Cleanup +```shell +eksctl anywhere delete cluster prod -v 4 +rm -rf cluster.yaml prod *tar.gz results +``` \ No newline at end of file diff --git a/v1.26/eks-a/e2e.log b/v1.26/eks-a/e2e.log new file mode 100644 index 0000000000..ac70728098 --- /dev/null +++ b/v1.26/eks-a/e2e.log @@ -0,0 +1,40175 @@ +I0405 18:36:34.437668 19 e2e.go:126] Starting e2e run "60fac2e7-2f67-405e-b863-2e4212768928" on Ginkgo node 1 +Apr 5 18:36:34.457: INFO: Enabling in-tree volume drivers +Running Suite: Kubernetes e2e suite - /usr/local/bin +==================================================== +Random Seed: 1680719794 - will randomize all specs + +Will run 368 of 7069 specs +------------------------------ +[SynchronizedBeforeSuite] +test/e2e/e2e.go:77 +[SynchronizedBeforeSuite] TOP-LEVEL + test/e2e/e2e.go:77 +Apr 5 18:36:34.755: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:36:34.756: INFO: Waiting up to 30m0s for all (but 0) nodes to be schedulable +E0405 18:36:34.758404 19 progress.go:80] Failed to post progress update to http://localhost:8099/progress: Post "http://localhost:8099/progress": dial tcp [::1]:8099: connect: connection refused +Apr 5 18:36:34.787: INFO: Waiting up to 10m0s for all pods (need at least 0) in namespace 'kube-system' to be running and ready +Apr 5 18:36:34.889: INFO: 41 / 41 pods in namespace 'kube-system' are running and ready (0 seconds elapsed) +Apr 5 18:36:34.889: INFO: expected 5 pod replicas in namespace 'kube-system', 5 are Running and Ready. +Apr 5 18:36:34.889: INFO: Waiting up to 5m0s for all daemonsets in namespace 'kube-system' to start +Apr 5 18:36:34.896: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'cilium' (0 seconds elapsed) +Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'kube-proxy' (0 seconds elapsed) +Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'vsphere-cloud-controller-manager' (0 seconds elapsed) +Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'vsphere-csi-node' (0 seconds elapsed) +Apr 5 18:36:34.897: INFO: e2e test version: v1.26.2 +Apr 5 18:36:34.899: INFO: kube-apiserver version: v1.26.2-eks-c3ba22f +[SynchronizedBeforeSuite] TOP-LEVEL + test/e2e/e2e.go:77 +Apr 5 18:36:34.899: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:36:34.903: INFO: Cluster IP family: ipv4 +------------------------------ +[SynchronizedBeforeSuite] PASSED [0.149 seconds] +[SynchronizedBeforeSuite] +test/e2e/e2e.go:77 + + Begin Captured GinkgoWriter Output >> + [SynchronizedBeforeSuite] TOP-LEVEL + test/e2e/e2e.go:77 + Apr 5 18:36:34.755: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:36:34.756: INFO: Waiting up to 30m0s for all (but 0) nodes to be schedulable + E0405 18:36:34.758404 19 progress.go:80] Failed to post progress update to http://localhost:8099/progress: Post "http://localhost:8099/progress": dial tcp [::1]:8099: connect: connection refused + Apr 5 18:36:34.787: INFO: Waiting up to 10m0s for all pods (need at least 0) in namespace 'kube-system' to be running and ready + Apr 5 18:36:34.889: INFO: 41 / 41 pods in namespace 'kube-system' are running and ready (0 seconds elapsed) + Apr 5 18:36:34.889: INFO: expected 5 pod replicas in namespace 'kube-system', 5 are Running and Ready. + Apr 5 18:36:34.889: INFO: Waiting up to 5m0s for all daemonsets in namespace 'kube-system' to start + Apr 5 18:36:34.896: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'cilium' (0 seconds elapsed) + Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'kube-proxy' (0 seconds elapsed) + Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'vsphere-cloud-controller-manager' (0 seconds elapsed) + Apr 5 18:36:34.897: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'vsphere-csi-node' (0 seconds elapsed) + Apr 5 18:36:34.897: INFO: e2e test version: v1.26.2 + Apr 5 18:36:34.899: INFO: kube-apiserver version: v1.26.2-eks-c3ba22f + [SynchronizedBeforeSuite] TOP-LEVEL + test/e2e/e2e.go:77 + Apr 5 18:36:34.899: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:36:34.903: INFO: Cluster IP family: ipv4 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[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/common/node/runtime.go:216 +[BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:36:34.933 +Apr 5 18:36:34.933: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-runtime 04/05/23 18:36:34.934 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:36:34.956 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:36:34.959 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 +[It] should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:216 +STEP: create the container 04/05/23 18:36:34.964 +STEP: wait for the container to reach Failed 04/05/23 18:36:34.974 +STEP: get the container status 04/05/23 18:36:44.036 +STEP: the container should be terminated 04/05/23 18:36:44.039 +STEP: the termination message should be set 04/05/23 18:36:44.04 +Apr 5 18:36:44.040: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- +STEP: delete the container 04/05/23 18:36:44.04 +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 +Apr 5 18:36:44.059: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 +STEP: Destroying namespace "container-runtime-1968" for this suite. 04/05/23 18:36:44.066 +------------------------------ +• [SLOW TEST] [9.141 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:44 + on terminated container + test/e2e/common/node/runtime.go:137 + should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:216 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:36:34.933 + Apr 5 18:36:34.933: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-runtime 04/05/23 18:36:34.934 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:36:34.956 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:36:34.959 + [BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 + [It] should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:216 + STEP: create the container 04/05/23 18:36:34.964 + STEP: wait for the container to reach Failed 04/05/23 18:36:34.974 + STEP: get the container status 04/05/23 18:36:44.036 + STEP: the container should be terminated 04/05/23 18:36:44.039 + STEP: the termination message should be set 04/05/23 18:36:44.04 + Apr 5 18:36:44.040: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- + STEP: delete the container 04/05/23 18:36:44.04 + [AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 + Apr 5 18:36:44.059: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 + STEP: Destroying namespace "container-runtime-1968" for this suite. 04/05/23 18:36:44.066 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should delete a job [Conformance] + test/e2e/apps/job.go:481 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:36:44.09 +Apr 5 18:36:44.090: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 18:36:44.092 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:36:44.123 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:36:44.126 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should delete a job [Conformance] + test/e2e/apps/job.go:481 +STEP: Creating a job 04/05/23 18:36:44.13 +STEP: Ensuring active pods == parallelism 04/05/23 18:36:44.137 +STEP: delete a job 04/05/23 18:36:50.143 +STEP: deleting Job.batch foo in namespace job-1378, will wait for the garbage collector to delete the pods 04/05/23 18:36:50.143 +Apr 5 18:36:50.206: INFO: Deleting Job.batch foo took: 8.533132ms +Apr 5 18:36:50.307: INFO: Terminating Job.batch foo pods took: 101.124768ms +STEP: Ensuring job was deleted 04/05/23 18:37:22.907 +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 18:37:22.913: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-1378" for this suite. 04/05/23 18:37:22.921 +------------------------------ +• [SLOW TEST] [38.839 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should delete a job [Conformance] + test/e2e/apps/job.go:481 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:36:44.09 + Apr 5 18:36:44.090: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 18:36:44.092 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:36:44.123 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:36:44.126 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should delete a job [Conformance] + test/e2e/apps/job.go:481 + STEP: Creating a job 04/05/23 18:36:44.13 + STEP: Ensuring active pods == parallelism 04/05/23 18:36:44.137 + STEP: delete a job 04/05/23 18:36:50.143 + STEP: deleting Job.batch foo in namespace job-1378, will wait for the garbage collector to delete the pods 04/05/23 18:36:50.143 + Apr 5 18:36:50.206: INFO: Deleting Job.batch foo took: 8.533132ms + Apr 5 18:36:50.307: INFO: Terminating Job.batch foo pods took: 101.124768ms + STEP: Ensuring job was deleted 04/05/23 18:37:22.907 + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 18:37:22.913: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-1378" for this suite. 04/05/23 18:37:22.921 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/apimachinery/resource_quota.go:230 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:37:22.933 +Apr 5 18:37:22.933: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 18:37:22.934 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:22.95 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:22.953 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/apimachinery/resource_quota.go:230 +STEP: Counting existing ResourceQuota 04/05/23 18:37:22.956 +STEP: Creating a ResourceQuota 04/05/23 18:37:27.96 +STEP: Ensuring resource quota status is calculated 04/05/23 18:37:27.969 +STEP: Creating a Pod that fits quota 04/05/23 18:37:29.973 +STEP: Ensuring ResourceQuota status captures the pod usage 04/05/23 18:37:29.991 +STEP: Not allowing a pod to be created that exceeds remaining quota 04/05/23 18:37:31.995 +STEP: Not allowing a pod to be created that exceeds remaining quota(validation on extended resources) 04/05/23 18:37:31.998 +STEP: Ensuring a pod cannot update its resource requirements 04/05/23 18:37:32 +STEP: Ensuring attempts to update pod resource requirements did not change quota usage 04/05/23 18:37:32.005 +STEP: Deleting the pod 04/05/23 18:37:34.008 +STEP: Ensuring resource quota status released the pod usage 04/05/23 18:37:34.018 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 18:37:36.023: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-4877" for this suite. 04/05/23 18:37:36.03 +------------------------------ +• [SLOW TEST] [13.103 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/apimachinery/resource_quota.go:230 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:37:22.933 + Apr 5 18:37:22.933: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 18:37:22.934 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:22.95 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:22.953 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/apimachinery/resource_quota.go:230 + STEP: Counting existing ResourceQuota 04/05/23 18:37:22.956 + STEP: Creating a ResourceQuota 04/05/23 18:37:27.96 + STEP: Ensuring resource quota status is calculated 04/05/23 18:37:27.969 + STEP: Creating a Pod that fits quota 04/05/23 18:37:29.973 + STEP: Ensuring ResourceQuota status captures the pod usage 04/05/23 18:37:29.991 + STEP: Not allowing a pod to be created that exceeds remaining quota 04/05/23 18:37:31.995 + STEP: Not allowing a pod to be created that exceeds remaining quota(validation on extended resources) 04/05/23 18:37:31.998 + STEP: Ensuring a pod cannot update its resource requirements 04/05/23 18:37:32 + STEP: Ensuring attempts to update pod resource requirements did not change quota usage 04/05/23 18:37:32.005 + STEP: Deleting the pod 04/05/23 18:37:34.008 + STEP: Ensuring resource quota status released the pod usage 04/05/23 18:37:34.018 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 18:37:36.023: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-4877" for this suite. 04/05/23 18:37:36.03 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:84 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:37:36.04 +Apr 5 18:37:36.040: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 18:37:36.041 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:36.057 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:36.06 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:84 +STEP: Creating a pod to test downward API volume plugin 04/05/23 18:37:36.064 +Apr 5 18:37:36.077: INFO: Waiting up to 5m0s for pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870" in namespace "projected-6252" to be "Succeeded or Failed" +Apr 5 18:37:36.080: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 3.035246ms +Apr 5 18:37:38.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007978748s +Apr 5 18:37:40.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006722694s +Apr 5 18:37:42.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006943917s +Apr 5 18:37:44.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007443875s +Apr 5 18:37:46.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 10.007506361s +Apr 5 18:37:48.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Succeeded", Reason="", readiness=false. Elapsed: 12.006934544s +STEP: Saw pod success 04/05/23 18:37:48.084 +Apr 5 18:37:48.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870" satisfied condition "Succeeded or Failed" +Apr 5 18:37:48.088: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 container client-container: +STEP: delete the pod 04/05/23 18:37:48.108 +Apr 5 18:37:48.125: INFO: Waiting for pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 to disappear +Apr 5 18:37:48.129: INFO: Pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 18:37:48.129: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-6252" for this suite. 04/05/23 18:37:48.135 +------------------------------ +• [SLOW TEST] [12.101 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:84 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:37:36.04 + Apr 5 18:37:36.040: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 18:37:36.041 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:36.057 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:36.06 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:84 + STEP: Creating a pod to test downward API volume plugin 04/05/23 18:37:36.064 + Apr 5 18:37:36.077: INFO: Waiting up to 5m0s for pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870" in namespace "projected-6252" to be "Succeeded or Failed" + Apr 5 18:37:36.080: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 3.035246ms + Apr 5 18:37:38.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007978748s + Apr 5 18:37:40.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006722694s + Apr 5 18:37:42.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006943917s + Apr 5 18:37:44.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007443875s + Apr 5 18:37:46.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Pending", Reason="", readiness=false. Elapsed: 10.007506361s + Apr 5 18:37:48.084: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870": Phase="Succeeded", Reason="", readiness=false. Elapsed: 12.006934544s + STEP: Saw pod success 04/05/23 18:37:48.084 + Apr 5 18:37:48.085: INFO: Pod "downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870" satisfied condition "Succeeded or Failed" + Apr 5 18:37:48.088: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 container client-container: + STEP: delete the pod 04/05/23 18:37:48.108 + Apr 5 18:37:48.125: INFO: Waiting for pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 to disappear + Apr 5 18:37:48.129: INFO: Pod downwardapi-volume-2b70c068-b5b5-40af-916c-edf6e89b0870 no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 18:37:48.129: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-6252" for this suite. 04/05/23 18:37:48.135 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny custom resource creation, update and deletion [Conformance] + test/e2e/apimachinery/webhook.go:221 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:37:48.15 +Apr 5 18:37:48.150: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 18:37:48.151 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:48.168 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:48.171 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 18:37:48.188 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 18:37:48.812 +STEP: Deploying the webhook pod 04/05/23 18:37:48.822 +STEP: Wait for the deployment to be ready 04/05/23 18:37:48.838 +Apr 5 18:37:48.845: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +Apr 5 18:37:50.857: 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(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 18:37:52.862: 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(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 18:37:54.861 +STEP: Verifying the service has paired with the endpoint 04/05/23 18:37:54.88 +Apr 5 18:37:55.881: 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/apimachinery/webhook.go:221 +Apr 5 18:37:55.886: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Registering the custom resource webhook via the AdmissionRegistration API 04/05/23 18:37:56.398 +STEP: Creating a custom resource that should be denied by the webhook 04/05/23 18:37:56.417 +STEP: Creating a custom resource whose deletion would be denied by the webhook 04/05/23 18:37:58.46 +STEP: Updating the custom resource with disallowed data should be denied 04/05/23 18:37:58.468 +STEP: Deleting the custom resource should be denied 04/05/23 18:37:58.481 +STEP: Remove the offending key and value from the custom resource data 04/05/23 18:37:58.488 +STEP: Deleting the updated custom resource should be successful 04/05/23 18:37:58.498 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:37:59.030: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-870" for this suite. 04/05/23 18:37:59.089 +STEP: Destroying namespace "webhook-870-markers" for this suite. 04/05/23 18:37:59.096 +------------------------------ +• [SLOW TEST] [10.953 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/apimachinery/webhook.go:221 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:37:48.15 + Apr 5 18:37:48.150: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 18:37:48.151 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:48.168 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:48.171 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 18:37:48.188 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 18:37:48.812 + STEP: Deploying the webhook pod 04/05/23 18:37:48.822 + STEP: Wait for the deployment to be ready 04/05/23 18:37:48.838 + Apr 5 18:37:48.845: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created + Apr 5 18:37:50.857: 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(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 18:37:52.862: 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(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 37, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 18:37:54.861 + STEP: Verifying the service has paired with the endpoint 04/05/23 18:37:54.88 + Apr 5 18:37:55.881: 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/apimachinery/webhook.go:221 + Apr 5 18:37:55.886: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Registering the custom resource webhook via the AdmissionRegistration API 04/05/23 18:37:56.398 + STEP: Creating a custom resource that should be denied by the webhook 04/05/23 18:37:56.417 + STEP: Creating a custom resource whose deletion would be denied by the webhook 04/05/23 18:37:58.46 + STEP: Updating the custom resource with disallowed data should be denied 04/05/23 18:37:58.468 + STEP: Deleting the custom resource should be denied 04/05/23 18:37:58.481 + STEP: Remove the offending key and value from the custom resource data 04/05/23 18:37:58.488 + STEP: Deleting the updated custom resource should be successful 04/05/23 18:37:58.498 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:37:59.030: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-870" for this suite. 04/05/23 18:37:59.089 + STEP: Destroying namespace "webhook-870-markers" for this suite. 04/05/23 18:37:59.096 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] NoExecuteTaintManager Multiple Pods [Serial] + evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/node/taints.go:455 +[BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:37:59.105 +Apr 5 18:37:59.105: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename taint-multiple-pods 04/05/23 18:37:59.107 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:59.135 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:59.145 +[BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/node/taints.go:383 +Apr 5 18:37:59.155: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 18:38:59.230: INFO: Waiting for terminating namespaces to be deleted... +[It] evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/node/taints.go:455 +Apr 5 18:38:59.234: INFO: Starting informer... +STEP: Starting pods... 04/05/23 18:38:59.234 +Apr 5 18:38:59.456: INFO: Pod1 is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node +Apr 5 18:38:59.667: INFO: Waiting up to 5m0s for pod "taint-eviction-b1" in namespace "taint-multiple-pods-5855" to be "running" +Apr 5 18:38:59.670: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.226653ms +Apr 5 18:39:01.675: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00811284s +Apr 5 18:39:03.674: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007599182s +Apr 5 18:39:05.676: INFO: Pod "taint-eviction-b1": Phase="Running", Reason="", readiness=true. Elapsed: 6.009025668s +Apr 5 18:39:05.676: INFO: Pod "taint-eviction-b1" satisfied condition "running" +Apr 5 18:39:05.676: INFO: Waiting up to 5m0s for pod "taint-eviction-b2" in namespace "taint-multiple-pods-5855" to be "running" +Apr 5 18:39:05.680: INFO: Pod "taint-eviction-b2": Phase="Running", Reason="", readiness=true. Elapsed: 3.348954ms +Apr 5 18:39:05.680: INFO: Pod "taint-eviction-b2" satisfied condition "running" +Apr 5 18:39:05.680: INFO: Pod2 is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node +STEP: Trying to apply a taint on the Node 04/05/23 18:39:05.68 +STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 18:39:05.7 +STEP: Waiting for Pod1 and Pod2 to be deleted 04/05/23 18:39:05.704 +Apr 5 18:39:11.736: INFO: Noticed Pod "taint-eviction-b1" gets evicted. +Apr 5 18:39:31.274: 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 04/05/23 18:39:31.289 +[AfterEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:39:31.292: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "taint-multiple-pods-5855" for this suite. 04/05/23 18:39:31.299 +------------------------------ +• [SLOW TEST] [92.206 seconds] +[sig-node] NoExecuteTaintManager Multiple Pods [Serial] +test/e2e/node/framework.go:23 + evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/node/taints.go:455 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:37:59.105 + Apr 5 18:37:59.105: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename taint-multiple-pods 04/05/23 18:37:59.107 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:37:59.135 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:37:59.145 + [BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/node/taints.go:383 + Apr 5 18:37:59.155: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 18:38:59.230: INFO: Waiting for terminating namespaces to be deleted... + [It] evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/node/taints.go:455 + Apr 5 18:38:59.234: INFO: Starting informer... + STEP: Starting pods... 04/05/23 18:38:59.234 + Apr 5 18:38:59.456: INFO: Pod1 is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node + Apr 5 18:38:59.667: INFO: Waiting up to 5m0s for pod "taint-eviction-b1" in namespace "taint-multiple-pods-5855" to be "running" + Apr 5 18:38:59.670: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.226653ms + Apr 5 18:39:01.675: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00811284s + Apr 5 18:39:03.674: INFO: Pod "taint-eviction-b1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007599182s + Apr 5 18:39:05.676: INFO: Pod "taint-eviction-b1": Phase="Running", Reason="", readiness=true. Elapsed: 6.009025668s + Apr 5 18:39:05.676: INFO: Pod "taint-eviction-b1" satisfied condition "running" + Apr 5 18:39:05.676: INFO: Waiting up to 5m0s for pod "taint-eviction-b2" in namespace "taint-multiple-pods-5855" to be "running" + Apr 5 18:39:05.680: INFO: Pod "taint-eviction-b2": Phase="Running", Reason="", readiness=true. Elapsed: 3.348954ms + Apr 5 18:39:05.680: INFO: Pod "taint-eviction-b2" satisfied condition "running" + Apr 5 18:39:05.680: INFO: Pod2 is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node + STEP: Trying to apply a taint on the Node 04/05/23 18:39:05.68 + STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 18:39:05.7 + STEP: Waiting for Pod1 and Pod2 to be deleted 04/05/23 18:39:05.704 + Apr 5 18:39:11.736: INFO: Noticed Pod "taint-eviction-b1" gets evicted. + Apr 5 18:39:31.274: 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 04/05/23 18:39:31.289 + [AfterEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:39:31.292: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "taint-multiple-pods-5855" for this suite. 04/05/23 18:39:31.299 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-network] EndpointSlice + should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/network/endpointslice.go:102 +[BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:39:31.314 +Apr 5 18:39:31.314: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename endpointslice 04/05/23 18:39:31.326 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:31.345 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:31.347 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 +[It] should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/network/endpointslice.go:102 +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 +Apr 5 18:39:35.411: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 +STEP: Destroying namespace "endpointslice-4200" for this suite. 04/05/23 18:39:35.417 +------------------------------ +• [4.109 seconds] +[sig-network] EndpointSlice +test/e2e/network/common/framework.go:23 + should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/network/endpointslice.go:102 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:39:31.314 + Apr 5 18:39:31.314: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename endpointslice 04/05/23 18:39:31.326 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:31.345 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:31.347 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 + [It] should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/network/endpointslice.go:102 + [AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 + Apr 5 18:39:35.411: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 + STEP: Destroying namespace "endpointslice-4200" for this suite. 04/05/23 18:39:35.417 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-node] RuntimeClass + should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:55 +[BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:39:35.424 +Apr 5 18:39:35.424: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename runtimeclass 04/05/23 18:39:35.425 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:35.44 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:35.444 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 +[It] should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:55 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 +Apr 5 18:39:35.454: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 +STEP: Destroying namespace "runtimeclass-8854" for this suite. 04/05/23 18:39:35.46 +------------------------------ +• [0.042 seconds] +[sig-node] RuntimeClass +test/e2e/common/node/framework.go:23 + should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:55 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:39:35.424 + Apr 5 18:39:35.424: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename runtimeclass 04/05/23 18:39:35.425 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:35.44 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:35.444 + [BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 + [It] should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:55 + [AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 + Apr 5 18:39:35.454: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 + STEP: Destroying namespace "runtimeclass-8854" for this suite. 04/05/23 18:39:35.46 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/apps/cronjob.go:124 +[BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:39:35.475 +Apr 5 18:39:35.475: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename cronjob 04/05/23 18:39:35.477 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:35.494 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:35.497 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 +[It] should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/apps/cronjob.go:124 +STEP: Creating a ForbidConcurrent cronjob 04/05/23 18:39:35.501 +STEP: Ensuring a job is scheduled 04/05/23 18:39:35.507 +STEP: Ensuring exactly one is scheduled 04/05/23 18:40:01.511 +STEP: Ensuring exactly one running job exists by listing jobs explicitly 04/05/23 18:40:01.515 +STEP: Ensuring no more jobs are scheduled 04/05/23 18:40:01.518 +STEP: Removing cronjob 04/05/23 18:45:01.526 +[AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:01.533: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 +STEP: Destroying namespace "cronjob-5885" for this suite. 04/05/23 18:45:01.538 +------------------------------ +• [SLOW TEST] [326.071 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/apps/cronjob.go:124 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:39:35.475 + Apr 5 18:39:35.475: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename cronjob 04/05/23 18:39:35.477 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:39:35.494 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:39:35.497 + [BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 + [It] should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/apps/cronjob.go:124 + STEP: Creating a ForbidConcurrent cronjob 04/05/23 18:39:35.501 + STEP: Ensuring a job is scheduled 04/05/23 18:39:35.507 + STEP: Ensuring exactly one is scheduled 04/05/23 18:40:01.511 + STEP: Ensuring exactly one running job exists by listing jobs explicitly 04/05/23 18:40:01.515 + STEP: Ensuring no more jobs are scheduled 04/05/23 18:40:01.518 + STEP: Removing cronjob 04/05/23 18:45:01.526 + [AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:01.533: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 + STEP: Destroying namespace "cronjob-5885" for this suite. 04/05/23 18:45:01.538 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD without validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:153 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:01.547 +Apr 5 18:45:01.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:45:01.548 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:01.567 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:01.571 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for CRD without validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:153 +Apr 5 18:45:01.575: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 18:45:05.13 +Apr 5 18:45:05.130: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 create -f -' +Apr 5 18:45:06.633: INFO: stderr: "" +Apr 5 18:45:06.633: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" +Apr 5 18:45:06.633: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 delete e2e-test-crd-publish-openapi-8488-crds test-cr' +Apr 5 18:45:06.758: INFO: stderr: "" +Apr 5 18:45:06.758: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" +Apr 5 18:45:06.759: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 apply -f -' +Apr 5 18:45:08.335: INFO: stderr: "" +Apr 5 18:45:08.335: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" +Apr 5 18:45:08.335: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 delete e2e-test-crd-publish-openapi-8488-crds test-cr' +Apr 5 18:45:08.437: INFO: stderr: "" +Apr 5 18:45:08.437: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR without validation schema 04/05/23 18:45:08.437 +Apr 5 18:45:08.438: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 explain e2e-test-crd-publish-openapi-8488-crds' +Apr 5 18:45:08.852: INFO: stderr: "" +Apr 5 18:45:08.852: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-8488-crd\nVERSION: crd-publish-openapi-test-empty.example.com/v1\n\nDESCRIPTION:\n \n" +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:12.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-8227" for this suite. 04/05/23 18:45:12.449 +------------------------------ +• [SLOW TEST] [10.912 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD without validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:153 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:01.547 + Apr 5 18:45:01.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:45:01.548 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:01.567 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:01.571 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for CRD without validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:153 + Apr 5 18:45:01.575: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 18:45:05.13 + Apr 5 18:45:05.130: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 create -f -' + Apr 5 18:45:06.633: INFO: stderr: "" + Apr 5 18:45:06.633: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" + Apr 5 18:45:06.633: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 delete e2e-test-crd-publish-openapi-8488-crds test-cr' + Apr 5 18:45:06.758: INFO: stderr: "" + Apr 5 18:45:06.758: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" + Apr 5 18:45:06.759: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 apply -f -' + Apr 5 18:45:08.335: INFO: stderr: "" + Apr 5 18:45:08.335: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" + Apr 5 18:45:08.335: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 --namespace=crd-publish-openapi-8227 delete e2e-test-crd-publish-openapi-8488-crds test-cr' + Apr 5 18:45:08.437: INFO: stderr: "" + Apr 5 18:45:08.437: INFO: stdout: "e2e-test-crd-publish-openapi-8488-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" + STEP: kubectl explain works to explain CR without validation schema 04/05/23 18:45:08.437 + Apr 5 18:45:08.438: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-8227 explain e2e-test-crd-publish-openapi-8488-crds' + Apr 5 18:45:08.852: INFO: stderr: "" + Apr 5 18:45:08.852: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-8488-crd\nVERSION: crd-publish-openapi-test-empty.example.com/v1\n\nDESCRIPTION:\n \n" + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:12.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-8227" for this suite. 04/05/23 18:45:12.449 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should mount an API token into pods [Conformance] + test/e2e/auth/service_accounts.go:78 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:12.46 +Apr 5 18:45:12.460: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 18:45:12.461 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:12.667 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:12.67 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should mount an API token into pods [Conformance] + test/e2e/auth/service_accounts.go:78 +Apr 5 18:45:12.688: INFO: Waiting up to 5m0s for pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134" in namespace "svcaccounts-6111" to be "running" +Apr 5 18:45:12.690: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 2.712755ms +Apr 5 18:45:14.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008693357s +Apr 5 18:45:16.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008122968s +Apr 5 18:45:18.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Running", Reason="", readiness=true. Elapsed: 6.008264777s +Apr 5 18:45:18.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134" satisfied condition "running" +STEP: reading a file in the container 04/05/23 18:45:18.696 +Apr 5 18:45:18.696: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/token' +STEP: reading a file in the container 04/05/23 18:45:18.878 +Apr 5 18:45:18.878: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/ca.crt' +STEP: reading a file in the container 04/05/23 18:45:19.05 +Apr 5 18:45:19.050: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/namespace' +Apr 5 18:45:19.225: INFO: Got root ca configmap in namespace "svcaccounts-6111" +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:19.228: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-6111" for this suite. 04/05/23 18:45:19.234 +------------------------------ +• [SLOW TEST] [6.780 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should mount an API token into pods [Conformance] + test/e2e/auth/service_accounts.go:78 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:12.46 + Apr 5 18:45:12.460: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 18:45:12.461 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:12.667 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:12.67 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should mount an API token into pods [Conformance] + test/e2e/auth/service_accounts.go:78 + Apr 5 18:45:12.688: INFO: Waiting up to 5m0s for pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134" in namespace "svcaccounts-6111" to be "running" + Apr 5 18:45:12.690: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 2.712755ms + Apr 5 18:45:14.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008693357s + Apr 5 18:45:16.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008122968s + Apr 5 18:45:18.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134": Phase="Running", Reason="", readiness=true. Elapsed: 6.008264777s + Apr 5 18:45:18.696: INFO: Pod "pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134" satisfied condition "running" + STEP: reading a file in the container 04/05/23 18:45:18.696 + Apr 5 18:45:18.696: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/token' + STEP: reading a file in the container 04/05/23 18:45:18.878 + Apr 5 18:45:18.878: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/ca.crt' + STEP: reading a file in the container 04/05/23 18:45:19.05 + Apr 5 18:45:19.050: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-6111 pod-service-account-7f438642-2a3a-4fb6-a758-2aa1968f8134 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/namespace' + Apr 5 18:45:19.225: INFO: Got root ca configmap in namespace "svcaccounts-6111" + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:19.228: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-6111" for this suite. 04/05/23 18:45:19.234 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:162 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:19.243 +Apr 5 18:45:19.243: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 18:45:19.244 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:19.261 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:19.264 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:162 +STEP: Creating the pod 04/05/23 18:45:19.267 +Apr 5 18:45:19.276: INFO: Waiting up to 5m0s for pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" in namespace "downward-api-3994" to be "running and ready" +Apr 5 18:45:19.279: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 2.922323ms +Apr 5 18:45:19.279: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:45:21.287: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010123712s +Apr 5 18:45:21.287: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:45:23.285: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008218994s +Apr 5 18:45:23.285: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:45:25.286: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Running", Reason="", readiness=true. Elapsed: 6.009371421s +Apr 5 18:45:25.286: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Running (Ready = true) +Apr 5 18:45:25.286: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" satisfied condition "running and ready" +Apr 5 18:45:25.820: INFO: Successfully updated pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:27.836: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-3994" for this suite. 04/05/23 18:45:27.842 +------------------------------ +• [SLOW TEST] [8.606 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:162 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:19.243 + Apr 5 18:45:19.243: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 18:45:19.244 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:19.261 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:19.264 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:162 + STEP: Creating the pod 04/05/23 18:45:19.267 + Apr 5 18:45:19.276: INFO: Waiting up to 5m0s for pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" in namespace "downward-api-3994" to be "running and ready" + Apr 5 18:45:19.279: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 2.922323ms + Apr 5 18:45:19.279: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:45:21.287: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010123712s + Apr 5 18:45:21.287: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:45:23.285: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008218994s + Apr 5 18:45:23.285: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:45:25.286: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83": Phase="Running", Reason="", readiness=true. Elapsed: 6.009371421s + Apr 5 18:45:25.286: INFO: The phase of Pod annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83 is Running (Ready = true) + Apr 5 18:45:25.286: INFO: Pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" satisfied condition "running and ready" + Apr 5 18:45:25.820: INFO: Successfully updated pod "annotationupdate77ab87c8-53a9-4b76-af80-97502a31ef83" + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:27.836: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-3994" for this suite. 04/05/23 18:45:27.842 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Proxy server + should support proxy with --port 0 [Conformance] + test/e2e/kubectl/kubectl.go:1787 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:27.854 +Apr 5 18:45:27.854: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 18:45:27.855 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:27.871 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:27.874 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should support proxy with --port 0 [Conformance] + test/e2e/kubectl/kubectl.go:1787 +STEP: starting the proxy server 04/05/23 18:45:27.877 +Apr 5 18:45:27.877: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-2685 proxy -p 0 --disable-filter' +STEP: curling proxy /api/ output 04/05/23 18:45:27.942 +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:27.950: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-2685" for this suite. 04/05/23 18:45:27.957 +------------------------------ +• [0.111 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Proxy server + test/e2e/kubectl/kubectl.go:1780 + should support proxy with --port 0 [Conformance] + test/e2e/kubectl/kubectl.go:1787 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:27.854 + Apr 5 18:45:27.854: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 18:45:27.855 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:27.871 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:27.874 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should support proxy with --port 0 [Conformance] + test/e2e/kubectl/kubectl.go:1787 + STEP: starting the proxy server 04/05/23 18:45:27.877 + Apr 5 18:45:27.877: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-2685 proxy -p 0 --disable-filter' + STEP: curling proxy /api/ output 04/05/23 18:45:27.942 + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:27.950: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-2685" for this suite. 04/05/23 18:45:27.957 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:59 +[BeforeEach] [sig-node] Containers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:27.971 +Apr 5 18:45:27.971: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename containers 04/05/23 18:45:27.972 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:27.993 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:27.996 +[BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:59 +STEP: Creating a pod to test override arguments 04/05/23 18:45:27.998 +Apr 5 18:45:28.007: INFO: Waiting up to 5m0s for pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421" in namespace "containers-9598" to be "Succeeded or Failed" +Apr 5 18:45:28.010: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.554243ms +Apr 5 18:45:30.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007663646s +Apr 5 18:45:32.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008431982s +Apr 5 18:45:34.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007959043s +Apr 5 18:45:36.016: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008885161s +STEP: Saw pod success 04/05/23 18:45:36.016 +Apr 5 18:45:36.016: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421" satisfied condition "Succeeded or Failed" +Apr 5 18:45:36.021: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 container agnhost-container: +STEP: delete the pod 04/05/23 18:45:36.028 +Apr 5 18:45:36.041: INFO: Waiting for pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 to disappear +Apr 5 18:45:36.044: INFO: Pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:36.044: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 +STEP: Destroying namespace "containers-9598" for this suite. 04/05/23 18:45:36.051 +------------------------------ +• [SLOW TEST] [8.086 seconds] +[sig-node] Containers +test/e2e/common/node/framework.go:23 + should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:59 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Containers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:27.971 + Apr 5 18:45:27.971: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename containers 04/05/23 18:45:27.972 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:27.993 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:27.996 + [BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:59 + STEP: Creating a pod to test override arguments 04/05/23 18:45:27.998 + Apr 5 18:45:28.007: INFO: Waiting up to 5m0s for pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421" in namespace "containers-9598" to be "Succeeded or Failed" + Apr 5 18:45:28.010: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.554243ms + Apr 5 18:45:30.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007663646s + Apr 5 18:45:32.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008431982s + Apr 5 18:45:34.015: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007959043s + Apr 5 18:45:36.016: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008885161s + STEP: Saw pod success 04/05/23 18:45:36.016 + Apr 5 18:45:36.016: INFO: Pod "client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421" satisfied condition "Succeeded or Failed" + Apr 5 18:45:36.021: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 container agnhost-container: + STEP: delete the pod 04/05/23 18:45:36.028 + Apr 5 18:45:36.041: INFO: Waiting for pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 to disappear + Apr 5 18:45:36.044: INFO: Pod client-containers-492d13a6-bfe7-4dc7-9152-21545dedb421 no longer exists + [AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:36.044: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 + STEP: Destroying namespace "containers-9598" for this suite. 04/05/23 18:45:36.051 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/network/service.go:1438 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:36.063 +Apr 5 18:45:36.063: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 18:45:36.064 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:36.079 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:36.082 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/network/service.go:1438 +STEP: creating a service externalname-service with the type=ExternalName in namespace services-551 04/05/23 18:45:36.086 +STEP: changing the ExternalName service to type=ClusterIP 04/05/23 18:45:36.092 +STEP: creating replication controller externalname-service in namespace services-551 04/05/23 18:45:36.119 +I0405 18:45:36.127275 19 runners.go:193] Created replication controller with name: externalname-service, namespace: services-551, replica count: 2 +I0405 18:45:39.178748 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 18:45:42.178926 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 1 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 18:45:45.179656 19 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 +Apr 5 18:45:45.179: INFO: Creating new exec pod +Apr 5 18:45:45.188: INFO: Waiting up to 5m0s for pod "execpodfg99p" in namespace "services-551" to be "running" +Apr 5 18:45:45.192: INFO: Pod "execpodfg99p": Phase="Pending", Reason="", readiness=false. Elapsed: 3.900445ms +Apr 5 18:45:47.198: INFO: Pod "execpodfg99p": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009725046s +Apr 5 18:45:49.197: INFO: Pod "execpodfg99p": Phase="Running", Reason="", readiness=true. Elapsed: 4.008381926s +Apr 5 18:45:49.197: INFO: Pod "execpodfg99p" satisfied condition "running" +Apr 5 18:45:50.198: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-551 exec execpodfg99p -- /bin/sh -x -c nc -v -z -w 2 externalname-service 80' +Apr 5 18:45:50.378: INFO: stderr: "+ nc -v -z -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" +Apr 5 18:45:50.378: INFO: stdout: "" +Apr 5 18:45:50.378: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-551 exec execpodfg99p -- /bin/sh -x -c nc -v -z -w 2 10.142.74.75 80' +Apr 5 18:45:50.563: INFO: stderr: "+ nc -v -z -w 2 10.142.74.75 80\nConnection to 10.142.74.75 80 port [tcp/http] succeeded!\n" +Apr 5 18:45:50.563: INFO: stdout: "" +Apr 5 18:45:50.563: INFO: Cleaning up the ExternalName to ClusterIP test service +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:50.591: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-551" for this suite. 04/05/23 18:45:50.596 +------------------------------ +• [SLOW TEST] [14.539 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/network/service.go:1438 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:36.063 + Apr 5 18:45:36.063: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 18:45:36.064 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:36.079 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:36.082 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/network/service.go:1438 + STEP: creating a service externalname-service with the type=ExternalName in namespace services-551 04/05/23 18:45:36.086 + STEP: changing the ExternalName service to type=ClusterIP 04/05/23 18:45:36.092 + STEP: creating replication controller externalname-service in namespace services-551 04/05/23 18:45:36.119 + I0405 18:45:36.127275 19 runners.go:193] Created replication controller with name: externalname-service, namespace: services-551, replica count: 2 + I0405 18:45:39.178748 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 18:45:42.178926 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 1 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 18:45:45.179656 19 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 + Apr 5 18:45:45.179: INFO: Creating new exec pod + Apr 5 18:45:45.188: INFO: Waiting up to 5m0s for pod "execpodfg99p" in namespace "services-551" to be "running" + Apr 5 18:45:45.192: INFO: Pod "execpodfg99p": Phase="Pending", Reason="", readiness=false. Elapsed: 3.900445ms + Apr 5 18:45:47.198: INFO: Pod "execpodfg99p": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009725046s + Apr 5 18:45:49.197: INFO: Pod "execpodfg99p": Phase="Running", Reason="", readiness=true. Elapsed: 4.008381926s + Apr 5 18:45:49.197: INFO: Pod "execpodfg99p" satisfied condition "running" + Apr 5 18:45:50.198: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-551 exec execpodfg99p -- /bin/sh -x -c nc -v -z -w 2 externalname-service 80' + Apr 5 18:45:50.378: INFO: stderr: "+ nc -v -z -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" + Apr 5 18:45:50.378: INFO: stdout: "" + Apr 5 18:45:50.378: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-551 exec execpodfg99p -- /bin/sh -x -c nc -v -z -w 2 10.142.74.75 80' + Apr 5 18:45:50.563: INFO: stderr: "+ nc -v -z -w 2 10.142.74.75 80\nConnection to 10.142.74.75 80 port [tcp/http] succeeded!\n" + Apr 5 18:45:50.563: INFO: stdout: "" + Apr 5 18:45:50.563: INFO: Cleaning up the ExternalName to ClusterIP test service + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:50.591: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-551" for this suite. 04/05/23 18:45:50.596 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:261 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:50.605 +Apr 5 18:45:50.605: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 18:45:50.606 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:50.628 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:50.633 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:261 +STEP: Creating a pod to test downward API volume plugin 04/05/23 18:45:50.638 +Apr 5 18:45:50.647: INFO: Waiting up to 5m0s for pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b" in namespace "downward-api-1241" to be "Succeeded or Failed" +Apr 5 18:45:50.651: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.102991ms +Apr 5 18:45:52.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008604981s +Apr 5 18:45:54.655: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008411541s +Apr 5 18:45:56.655: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008459944s +Apr 5 18:45:58.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009038196s +STEP: Saw pod success 04/05/23 18:45:58.656 +Apr 5 18:45:58.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b" satisfied condition "Succeeded or Failed" +Apr 5 18:45:58.660: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b container client-container: +STEP: delete the pod 04/05/23 18:45:58.666 +Apr 5 18:45:58.683: INFO: Waiting for pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b to disappear +Apr 5 18:45:58.686: INFO: Pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 18:45:58.686: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-1241" for this suite. 04/05/23 18:45:58.692 +------------------------------ +• [SLOW TEST] [8.094 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/common/storage/downwardapi_volume.go:261 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:50.605 + Apr 5 18:45:50.605: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 18:45:50.606 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:50.628 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:50.633 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:261 + STEP: Creating a pod to test downward API volume plugin 04/05/23 18:45:50.638 + Apr 5 18:45:50.647: INFO: Waiting up to 5m0s for pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b" in namespace "downward-api-1241" to be "Succeeded or Failed" + Apr 5 18:45:50.651: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.102991ms + Apr 5 18:45:52.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008604981s + Apr 5 18:45:54.655: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008411541s + Apr 5 18:45:56.655: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008459944s + Apr 5 18:45:58.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009038196s + STEP: Saw pod success 04/05/23 18:45:58.656 + Apr 5 18:45:58.656: INFO: Pod "downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b" satisfied condition "Succeeded or Failed" + Apr 5 18:45:58.660: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b container client-container: + STEP: delete the pod 04/05/23 18:45:58.666 + Apr 5 18:45:58.683: INFO: Waiting for pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b to disappear + Apr 5 18:45:58.686: INFO: Pod downwardapi-volume-3a2689f9-5dca-432c-ae49-8960e1ee693b no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 18:45:58.686: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-1241" for this suite. 04/05/23 18:45:58.692 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[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/apimachinery/garbage_collector.go:735 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:45:58.704 +Apr 5 18:45:58.704: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 18:45:58.705 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:58.721 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:58.725 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance] + test/e2e/apimachinery/garbage_collector.go:735 +STEP: create the rc1 04/05/23 18:45:58.733 +STEP: create the rc2 04/05/23 18:45:58.738 +STEP: set half of pods created by rc simpletest-rc-to-be-deleted to have rc simpletest-rc-to-stay as owner as well 04/05/23 18:46:03.915 +STEP: delete the rc simpletest-rc-to-be-deleted 04/05/23 18:46:09.506 +STEP: wait for the rc to be deleted 04/05/23 18:46:09.531 +Apr 5 18:46:14.648: INFO: 74 pods remaining +Apr 5 18:46:14.787: INFO: 69 pods has nil DeletionTimestamp +Apr 5 18:46:14.787: INFO: +Apr 5 18:46:19.976: INFO: 50 pods remaining +Apr 5 18:46:20.178: INFO: 50 pods has nil DeletionTimestamp +Apr 5 18:46:20.178: INFO: +STEP: Gathering metrics 04/05/23 18:46:24.546 +Apr 5 18:46:24.576: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 18:46:24.579: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 3.629195ms +Apr 5 18:46:24.579: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 18:46:24.579: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 18:46:24.655: 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: + +Apr 5 18:46:24.656: INFO: Deleting pod "simpletest-rc-to-be-deleted-22spz" in namespace "gc-2451" +Apr 5 18:46:24.670: INFO: Deleting pod "simpletest-rc-to-be-deleted-2gbg7" in namespace "gc-2451" +Apr 5 18:46:24.705: INFO: Deleting pod "simpletest-rc-to-be-deleted-2jcbr" in namespace "gc-2451" +Apr 5 18:46:24.717: INFO: Deleting pod "simpletest-rc-to-be-deleted-2jp22" in namespace "gc-2451" +Apr 5 18:46:24.810: INFO: Deleting pod "simpletest-rc-to-be-deleted-2mx87" in namespace "gc-2451" +Apr 5 18:46:24.825: INFO: Deleting pod "simpletest-rc-to-be-deleted-2s6bj" in namespace "gc-2451" +Apr 5 18:46:24.836: INFO: Deleting pod "simpletest-rc-to-be-deleted-2tr6b" in namespace "gc-2451" +Apr 5 18:46:24.854: INFO: Deleting pod "simpletest-rc-to-be-deleted-2z8qv" in namespace "gc-2451" +Apr 5 18:46:24.872: INFO: Deleting pod "simpletest-rc-to-be-deleted-49q8s" in namespace "gc-2451" +Apr 5 18:46:24.930: INFO: Deleting pod "simpletest-rc-to-be-deleted-4fd8q" in namespace "gc-2451" +Apr 5 18:46:24.945: INFO: Deleting pod "simpletest-rc-to-be-deleted-4xfqq" in namespace "gc-2451" +Apr 5 18:46:24.957: INFO: Deleting pod "simpletest-rc-to-be-deleted-52mgt" in namespace "gc-2451" +Apr 5 18:46:24.974: INFO: Deleting pod "simpletest-rc-to-be-deleted-5pn9j" in namespace "gc-2451" +Apr 5 18:46:24.985: INFO: Deleting pod "simpletest-rc-to-be-deleted-5tjw4" in namespace "gc-2451" +Apr 5 18:46:25.004: INFO: Deleting pod "simpletest-rc-to-be-deleted-6fvwz" in namespace "gc-2451" +Apr 5 18:46:25.017: INFO: Deleting pod "simpletest-rc-to-be-deleted-6gh95" in namespace "gc-2451" +Apr 5 18:46:25.034: INFO: Deleting pod "simpletest-rc-to-be-deleted-74fhx" in namespace "gc-2451" +Apr 5 18:46:25.050: INFO: Deleting pod "simpletest-rc-to-be-deleted-75c8l" in namespace "gc-2451" +Apr 5 18:46:25.082: INFO: Deleting pod "simpletest-rc-to-be-deleted-7657r" in namespace "gc-2451" +Apr 5 18:46:25.186: INFO: Deleting pod "simpletest-rc-to-be-deleted-7gf82" in namespace "gc-2451" +Apr 5 18:46:25.260: INFO: Deleting pod "simpletest-rc-to-be-deleted-8g9zn" in namespace "gc-2451" +Apr 5 18:46:25.300: INFO: Deleting pod "simpletest-rc-to-be-deleted-8llqt" in namespace "gc-2451" +Apr 5 18:46:25.349: INFO: Deleting pod "simpletest-rc-to-be-deleted-8njkl" in namespace "gc-2451" +Apr 5 18:46:25.445: INFO: Deleting pod "simpletest-rc-to-be-deleted-8sxd9" in namespace "gc-2451" +Apr 5 18:46:25.465: INFO: Deleting pod "simpletest-rc-to-be-deleted-95tdv" in namespace "gc-2451" +Apr 5 18:46:25.518: INFO: Deleting pod "simpletest-rc-to-be-deleted-9ft9r" in namespace "gc-2451" +Apr 5 18:46:25.589: INFO: Deleting pod "simpletest-rc-to-be-deleted-9ghzg" in namespace "gc-2451" +Apr 5 18:46:25.657: INFO: Deleting pod "simpletest-rc-to-be-deleted-b4s7t" in namespace "gc-2451" +Apr 5 18:46:25.677: INFO: Deleting pod "simpletest-rc-to-be-deleted-bbgs8" in namespace "gc-2451" +Apr 5 18:46:25.720: INFO: Deleting pod "simpletest-rc-to-be-deleted-brd2h" in namespace "gc-2451" +Apr 5 18:46:25.757: INFO: Deleting pod "simpletest-rc-to-be-deleted-cmr9t" in namespace "gc-2451" +Apr 5 18:46:25.796: INFO: Deleting pod "simpletest-rc-to-be-deleted-d29jp" in namespace "gc-2451" +Apr 5 18:46:25.812: INFO: Deleting pod "simpletest-rc-to-be-deleted-dwdgm" in namespace "gc-2451" +Apr 5 18:46:25.828: INFO: Deleting pod "simpletest-rc-to-be-deleted-dxfd8" in namespace "gc-2451" +Apr 5 18:46:25.873: INFO: Deleting pod "simpletest-rc-to-be-deleted-ffhbk" in namespace "gc-2451" +Apr 5 18:46:25.892: INFO: Deleting pod "simpletest-rc-to-be-deleted-fm4fs" in namespace "gc-2451" +Apr 5 18:46:25.906: INFO: Deleting pod "simpletest-rc-to-be-deleted-fsg89" in namespace "gc-2451" +Apr 5 18:46:25.957: INFO: Deleting pod "simpletest-rc-to-be-deleted-g4nq6" in namespace "gc-2451" +Apr 5 18:46:25.975: INFO: Deleting pod "simpletest-rc-to-be-deleted-g7m6h" in namespace "gc-2451" +Apr 5 18:46:25.989: INFO: Deleting pod "simpletest-rc-to-be-deleted-gq4cd" in namespace "gc-2451" +Apr 5 18:46:26.008: INFO: Deleting pod "simpletest-rc-to-be-deleted-h95js" in namespace "gc-2451" +Apr 5 18:46:26.026: INFO: Deleting pod "simpletest-rc-to-be-deleted-hts77" in namespace "gc-2451" +Apr 5 18:46:26.150: INFO: Deleting pod "simpletest-rc-to-be-deleted-j8n22" in namespace "gc-2451" +Apr 5 18:46:26.188: INFO: Deleting pod "simpletest-rc-to-be-deleted-jvzjx" in namespace "gc-2451" +Apr 5 18:46:26.206: INFO: Deleting pod "simpletest-rc-to-be-deleted-jxnzx" in namespace "gc-2451" +Apr 5 18:46:26.270: INFO: Deleting pod "simpletest-rc-to-be-deleted-k4hlw" in namespace "gc-2451" +Apr 5 18:46:26.304: INFO: Deleting pod "simpletest-rc-to-be-deleted-kgq7h" in namespace "gc-2451" +Apr 5 18:46:26.323: INFO: Deleting pod "simpletest-rc-to-be-deleted-km9pg" in namespace "gc-2451" +Apr 5 18:46:26.349: INFO: Deleting pod "simpletest-rc-to-be-deleted-kqn9f" in namespace "gc-2451" +Apr 5 18:46:26.477: INFO: Deleting pod "simpletest-rc-to-be-deleted-l56tw" in namespace "gc-2451" +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 +Apr 5 18:46:26.503: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-2451" for this suite. 04/05/23 18:46:26.704 +------------------------------ +• [SLOW TEST] [28.034 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/apimachinery/garbage_collector.go:735 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:45:58.704 + Apr 5 18:45:58.704: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 18:45:58.705 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:45:58.721 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:45:58.725 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance] + test/e2e/apimachinery/garbage_collector.go:735 + STEP: create the rc1 04/05/23 18:45:58.733 + STEP: create the rc2 04/05/23 18:45:58.738 + STEP: set half of pods created by rc simpletest-rc-to-be-deleted to have rc simpletest-rc-to-stay as owner as well 04/05/23 18:46:03.915 + STEP: delete the rc simpletest-rc-to-be-deleted 04/05/23 18:46:09.506 + STEP: wait for the rc to be deleted 04/05/23 18:46:09.531 + Apr 5 18:46:14.648: INFO: 74 pods remaining + Apr 5 18:46:14.787: INFO: 69 pods has nil DeletionTimestamp + Apr 5 18:46:14.787: INFO: + Apr 5 18:46:19.976: INFO: 50 pods remaining + Apr 5 18:46:20.178: INFO: 50 pods has nil DeletionTimestamp + Apr 5 18:46:20.178: INFO: + STEP: Gathering metrics 04/05/23 18:46:24.546 + Apr 5 18:46:24.576: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 18:46:24.579: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 3.629195ms + Apr 5 18:46:24.579: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 18:46:24.579: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 18:46:24.655: 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: + + Apr 5 18:46:24.656: INFO: Deleting pod "simpletest-rc-to-be-deleted-22spz" in namespace "gc-2451" + Apr 5 18:46:24.670: INFO: Deleting pod "simpletest-rc-to-be-deleted-2gbg7" in namespace "gc-2451" + Apr 5 18:46:24.705: INFO: Deleting pod "simpletest-rc-to-be-deleted-2jcbr" in namespace "gc-2451" + Apr 5 18:46:24.717: INFO: Deleting pod "simpletest-rc-to-be-deleted-2jp22" in namespace "gc-2451" + Apr 5 18:46:24.810: INFO: Deleting pod "simpletest-rc-to-be-deleted-2mx87" in namespace "gc-2451" + Apr 5 18:46:24.825: INFO: Deleting pod "simpletest-rc-to-be-deleted-2s6bj" in namespace "gc-2451" + Apr 5 18:46:24.836: INFO: Deleting pod "simpletest-rc-to-be-deleted-2tr6b" in namespace "gc-2451" + Apr 5 18:46:24.854: INFO: Deleting pod "simpletest-rc-to-be-deleted-2z8qv" in namespace "gc-2451" + Apr 5 18:46:24.872: INFO: Deleting pod "simpletest-rc-to-be-deleted-49q8s" in namespace "gc-2451" + Apr 5 18:46:24.930: INFO: Deleting pod "simpletest-rc-to-be-deleted-4fd8q" in namespace "gc-2451" + Apr 5 18:46:24.945: INFO: Deleting pod "simpletest-rc-to-be-deleted-4xfqq" in namespace "gc-2451" + Apr 5 18:46:24.957: INFO: Deleting pod "simpletest-rc-to-be-deleted-52mgt" in namespace "gc-2451" + Apr 5 18:46:24.974: INFO: Deleting pod "simpletest-rc-to-be-deleted-5pn9j" in namespace "gc-2451" + Apr 5 18:46:24.985: INFO: Deleting pod "simpletest-rc-to-be-deleted-5tjw4" in namespace "gc-2451" + Apr 5 18:46:25.004: INFO: Deleting pod "simpletest-rc-to-be-deleted-6fvwz" in namespace "gc-2451" + Apr 5 18:46:25.017: INFO: Deleting pod "simpletest-rc-to-be-deleted-6gh95" in namespace "gc-2451" + Apr 5 18:46:25.034: INFO: Deleting pod "simpletest-rc-to-be-deleted-74fhx" in namespace "gc-2451" + Apr 5 18:46:25.050: INFO: Deleting pod "simpletest-rc-to-be-deleted-75c8l" in namespace "gc-2451" + Apr 5 18:46:25.082: INFO: Deleting pod "simpletest-rc-to-be-deleted-7657r" in namespace "gc-2451" + Apr 5 18:46:25.186: INFO: Deleting pod "simpletest-rc-to-be-deleted-7gf82" in namespace "gc-2451" + Apr 5 18:46:25.260: INFO: Deleting pod "simpletest-rc-to-be-deleted-8g9zn" in namespace "gc-2451" + Apr 5 18:46:25.300: INFO: Deleting pod "simpletest-rc-to-be-deleted-8llqt" in namespace "gc-2451" + Apr 5 18:46:25.349: INFO: Deleting pod "simpletest-rc-to-be-deleted-8njkl" in namespace "gc-2451" + Apr 5 18:46:25.445: INFO: Deleting pod "simpletest-rc-to-be-deleted-8sxd9" in namespace "gc-2451" + Apr 5 18:46:25.465: INFO: Deleting pod "simpletest-rc-to-be-deleted-95tdv" in namespace "gc-2451" + Apr 5 18:46:25.518: INFO: Deleting pod "simpletest-rc-to-be-deleted-9ft9r" in namespace "gc-2451" + Apr 5 18:46:25.589: INFO: Deleting pod "simpletest-rc-to-be-deleted-9ghzg" in namespace "gc-2451" + Apr 5 18:46:25.657: INFO: Deleting pod "simpletest-rc-to-be-deleted-b4s7t" in namespace "gc-2451" + Apr 5 18:46:25.677: INFO: Deleting pod "simpletest-rc-to-be-deleted-bbgs8" in namespace "gc-2451" + Apr 5 18:46:25.720: INFO: Deleting pod "simpletest-rc-to-be-deleted-brd2h" in namespace "gc-2451" + Apr 5 18:46:25.757: INFO: Deleting pod "simpletest-rc-to-be-deleted-cmr9t" in namespace "gc-2451" + Apr 5 18:46:25.796: INFO: Deleting pod "simpletest-rc-to-be-deleted-d29jp" in namespace "gc-2451" + Apr 5 18:46:25.812: INFO: Deleting pod "simpletest-rc-to-be-deleted-dwdgm" in namespace "gc-2451" + Apr 5 18:46:25.828: INFO: Deleting pod "simpletest-rc-to-be-deleted-dxfd8" in namespace "gc-2451" + Apr 5 18:46:25.873: INFO: Deleting pod "simpletest-rc-to-be-deleted-ffhbk" in namespace "gc-2451" + Apr 5 18:46:25.892: INFO: Deleting pod "simpletest-rc-to-be-deleted-fm4fs" in namespace "gc-2451" + Apr 5 18:46:25.906: INFO: Deleting pod "simpletest-rc-to-be-deleted-fsg89" in namespace "gc-2451" + Apr 5 18:46:25.957: INFO: Deleting pod "simpletest-rc-to-be-deleted-g4nq6" in namespace "gc-2451" + Apr 5 18:46:25.975: INFO: Deleting pod "simpletest-rc-to-be-deleted-g7m6h" in namespace "gc-2451" + Apr 5 18:46:25.989: INFO: Deleting pod "simpletest-rc-to-be-deleted-gq4cd" in namespace "gc-2451" + Apr 5 18:46:26.008: INFO: Deleting pod "simpletest-rc-to-be-deleted-h95js" in namespace "gc-2451" + Apr 5 18:46:26.026: INFO: Deleting pod "simpletest-rc-to-be-deleted-hts77" in namespace "gc-2451" + Apr 5 18:46:26.150: INFO: Deleting pod "simpletest-rc-to-be-deleted-j8n22" in namespace "gc-2451" + Apr 5 18:46:26.188: INFO: Deleting pod "simpletest-rc-to-be-deleted-jvzjx" in namespace "gc-2451" + Apr 5 18:46:26.206: INFO: Deleting pod "simpletest-rc-to-be-deleted-jxnzx" in namespace "gc-2451" + Apr 5 18:46:26.270: INFO: Deleting pod "simpletest-rc-to-be-deleted-k4hlw" in namespace "gc-2451" + Apr 5 18:46:26.304: INFO: Deleting pod "simpletest-rc-to-be-deleted-kgq7h" in namespace "gc-2451" + Apr 5 18:46:26.323: INFO: Deleting pod "simpletest-rc-to-be-deleted-km9pg" in namespace "gc-2451" + Apr 5 18:46:26.349: INFO: Deleting pod "simpletest-rc-to-be-deleted-kqn9f" in namespace "gc-2451" + Apr 5 18:46:26.477: INFO: Deleting pod "simpletest-rc-to-be-deleted-l56tw" in namespace "gc-2451" + [AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 + Apr 5 18:46:26.503: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-2451" for this suite. 04/05/23 18:46:26.704 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] + validates basic preemption works [Conformance] + test/e2e/scheduling/preemption.go:130 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:46:26.805 +Apr 5 18:46:26.806: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption 04/05/23 18:46:26.81 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:46:26.828 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:46:26.831 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 +Apr 5 18:46:26.865: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 18:47:27.086: INFO: Waiting for terminating namespaces to be deleted... +[It] validates basic preemption works [Conformance] + test/e2e/scheduling/preemption.go:130 +STEP: Create pods that use 4/5 of node resources. 04/05/23 18:47:27.091 +Apr 5 18:47:27.115: INFO: Created pod: pod0-0-sched-preemption-low-priority +Apr 5 18:47:27.124: INFO: Created pod: pod0-1-sched-preemption-medium-priority +Apr 5 18:47:27.143: INFO: Created pod: pod1-0-sched-preemption-medium-priority +Apr 5 18:47:27.148: INFO: Created pod: pod1-1-sched-preemption-medium-priority +Apr 5 18:47:27.169: INFO: Created pod: pod2-0-sched-preemption-medium-priority +Apr 5 18:47:27.174: INFO: Created pod: pod2-1-sched-preemption-medium-priority +STEP: Wait for pods to be scheduled. 04/05/23 18:47:27.174 +Apr 5 18:47:27.175: INFO: Waiting up to 5m0s for pod "pod0-0-sched-preemption-low-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:27.180: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 5.617678ms +Apr 5 18:47:29.273: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 2.098652168s +Apr 5 18:47:31.185: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009866753s +Apr 5 18:47:33.192: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Running", Reason="", readiness=true. Elapsed: 6.016930534s +Apr 5 18:47:33.192: INFO: Pod "pod0-0-sched-preemption-low-priority" satisfied condition "running" +Apr 5 18:47:33.192: INFO: Waiting up to 5m0s for pod "pod0-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.194: INFO: Pod "pod0-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.676327ms +Apr 5 18:47:33.194: INFO: Pod "pod0-1-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 18:47:33.194: INFO: Waiting up to 5m0s for pod "pod1-0-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.198: INFO: Pod "pod1-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.322602ms +Apr 5 18:47:33.198: INFO: Pod "pod1-0-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 18:47:33.198: INFO: Waiting up to 5m0s for pod "pod1-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.201: INFO: Pod "pod1-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.466016ms +Apr 5 18:47:33.201: INFO: Pod "pod1-1-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 18:47:33.201: INFO: Waiting up to 5m0s for pod "pod2-0-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.204: INFO: Pod "pod2-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.147512ms +Apr 5 18:47:33.205: INFO: Pod "pod2-0-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 18:47:33.205: INFO: Waiting up to 5m0s for pod "pod2-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.208: INFO: Pod "pod2-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.313084ms +Apr 5 18:47:33.208: INFO: Pod "pod2-1-sched-preemption-medium-priority" satisfied condition "running" +STEP: Run a high priority pod that has same requirements as that of lower priority pod 04/05/23 18:47:33.208 +Apr 5 18:47:33.217: INFO: Waiting up to 2m0s for pod "preemptor-pod" in namespace "sched-preemption-8358" to be "running" +Apr 5 18:47:33.219: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.724261ms +Apr 5 18:47:35.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007063306s +Apr 5 18:47:37.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007725572s +Apr 5 18:47:39.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007845967s +Apr 5 18:47:41.225: INFO: Pod "preemptor-pod": Phase="Running", Reason="", readiness=true. Elapsed: 8.008538827s +Apr 5 18:47:41.226: INFO: Pod "preemptor-pod" satisfied condition "running" +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:47:41.247: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-8358" for this suite. 04/05/23 18:47:41.304 +------------------------------ +• [SLOW TEST] [74.506 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + validates basic preemption works [Conformance] + test/e2e/scheduling/preemption.go:130 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:46:26.805 + Apr 5 18:46:26.806: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption 04/05/23 18:46:26.81 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:46:26.828 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:46:26.831 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 + Apr 5 18:46:26.865: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 18:47:27.086: INFO: Waiting for terminating namespaces to be deleted... + [It] validates basic preemption works [Conformance] + test/e2e/scheduling/preemption.go:130 + STEP: Create pods that use 4/5 of node resources. 04/05/23 18:47:27.091 + Apr 5 18:47:27.115: INFO: Created pod: pod0-0-sched-preemption-low-priority + Apr 5 18:47:27.124: INFO: Created pod: pod0-1-sched-preemption-medium-priority + Apr 5 18:47:27.143: INFO: Created pod: pod1-0-sched-preemption-medium-priority + Apr 5 18:47:27.148: INFO: Created pod: pod1-1-sched-preemption-medium-priority + Apr 5 18:47:27.169: INFO: Created pod: pod2-0-sched-preemption-medium-priority + Apr 5 18:47:27.174: INFO: Created pod: pod2-1-sched-preemption-medium-priority + STEP: Wait for pods to be scheduled. 04/05/23 18:47:27.174 + Apr 5 18:47:27.175: INFO: Waiting up to 5m0s for pod "pod0-0-sched-preemption-low-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:27.180: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 5.617678ms + Apr 5 18:47:29.273: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 2.098652168s + Apr 5 18:47:31.185: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009866753s + Apr 5 18:47:33.192: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Running", Reason="", readiness=true. Elapsed: 6.016930534s + Apr 5 18:47:33.192: INFO: Pod "pod0-0-sched-preemption-low-priority" satisfied condition "running" + Apr 5 18:47:33.192: INFO: Waiting up to 5m0s for pod "pod0-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.194: INFO: Pod "pod0-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.676327ms + Apr 5 18:47:33.194: INFO: Pod "pod0-1-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 18:47:33.194: INFO: Waiting up to 5m0s for pod "pod1-0-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.198: INFO: Pod "pod1-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.322602ms + Apr 5 18:47:33.198: INFO: Pod "pod1-0-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 18:47:33.198: INFO: Waiting up to 5m0s for pod "pod1-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.201: INFO: Pod "pod1-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.466016ms + Apr 5 18:47:33.201: INFO: Pod "pod1-1-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 18:47:33.201: INFO: Waiting up to 5m0s for pod "pod2-0-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.204: INFO: Pod "pod2-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.147512ms + Apr 5 18:47:33.205: INFO: Pod "pod2-0-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 18:47:33.205: INFO: Waiting up to 5m0s for pod "pod2-1-sched-preemption-medium-priority" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.208: INFO: Pod "pod2-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.313084ms + Apr 5 18:47:33.208: INFO: Pod "pod2-1-sched-preemption-medium-priority" satisfied condition "running" + STEP: Run a high priority pod that has same requirements as that of lower priority pod 04/05/23 18:47:33.208 + Apr 5 18:47:33.217: INFO: Waiting up to 2m0s for pod "preemptor-pod" in namespace "sched-preemption-8358" to be "running" + Apr 5 18:47:33.219: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.724261ms + Apr 5 18:47:35.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007063306s + Apr 5 18:47:37.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007725572s + Apr 5 18:47:39.224: INFO: Pod "preemptor-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007845967s + Apr 5 18:47:41.225: INFO: Pod "preemptor-pod": Phase="Running", Reason="", readiness=true. Elapsed: 8.008538827s + Apr 5 18:47:41.226: INFO: Pod "preemptor-pod" satisfied condition "running" + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:47:41.247: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-8358" for this suite. 04/05/23 18:47:41.304 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD with validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:69 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:47:41.313 +Apr 5 18:47:41.313: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:47:41.314 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:47:41.332 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:47:41.334 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for CRD with validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:69 +Apr 5 18:47:41.338: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: kubectl validation (kubectl create and apply) allows request with known and required properties 04/05/23 18:47:45.543 +Apr 5 18:47:45.544: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' +Apr 5 18:47:47.240: INFO: stderr: "" +Apr 5 18:47:47.240: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" +Apr 5 18:47:47.240: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 delete e2e-test-crd-publish-openapi-6939-crds test-foo' +Apr 5 18:47:47.363: INFO: stderr: "" +Apr 5 18:47:47.363: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com \"test-foo\" deleted\n" +Apr 5 18:47:47.363: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' +Apr 5 18:47:47.830: INFO: stderr: "" +Apr 5 18:47:47.830: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" +Apr 5 18:47:47.830: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 delete e2e-test-crd-publish-openapi-6939-crds test-foo' +Apr 5 18:47:47.980: INFO: stderr: "" +Apr 5 18:47:47.980: INFO: stdout: "e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:47.98 +Apr 5 18:47:47.981: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' +Apr 5 18:47:48.420: INFO: rc: 1 +STEP: kubectl validation (kubectl create and apply) rejects request with unknown properties when disallowed by the schema 04/05/23 18:47:48.421 +Apr 5 18:47:48.421: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' +Apr 5 18:47:49.693: INFO: rc: 1 +Apr 5 18:47:49.694: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' +Apr 5 18:47:50.930: INFO: rc: 1 +STEP: kubectl validation (kubectl create and apply) rejects request without required properties 04/05/23 18:47:50.93 +Apr 5 18:47:50.931: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' +Apr 5 18:47:51.371: INFO: rc: 1 +Apr 5 18:47:51.371: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' +Apr 5 18:47:51.808: INFO: rc: 1 +STEP: kubectl explain works to explain CR properties 04/05/23 18:47:51.808 +Apr 5 18:47:51.808: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds' +Apr 5 18:47:52.224: INFO: stderr: "" +Apr 5 18:47:52.224: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:52.225 +Apr 5 18:47:52.225: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.metadata' +Apr 5 18:47:52.666: INFO: stderr: "" +Apr 5 18:47:52.666: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 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" +Apr 5 18:47:52.667: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec' +Apr 5 18:47:53.119: INFO: stderr: "" +Apr 5 18:47:53.119: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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" +Apr 5 18:47:53.120: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec.bars' +Apr 5 18:47:53.561: INFO: stderr: "" +Apr 5 18:47:53.561: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:53.561 +Apr 5 18:47:53.561: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec.bars2' +Apr 5 18:47:54.010: INFO: rc: 1 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:47:58.407: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-6957" for this suite. 04/05/23 18:47:58.419 +------------------------------ +• [SLOW TEST] [17.113 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD with validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:69 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:47:41.313 + Apr 5 18:47:41.313: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:47:41.314 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:47:41.332 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:47:41.334 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for CRD with validation schema [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:69 + Apr 5 18:47:41.338: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: kubectl validation (kubectl create and apply) allows request with known and required properties 04/05/23 18:47:45.543 + Apr 5 18:47:45.544: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' + Apr 5 18:47:47.240: INFO: stderr: "" + Apr 5 18:47:47.240: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" + Apr 5 18:47:47.240: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 delete e2e-test-crd-publish-openapi-6939-crds test-foo' + Apr 5 18:47:47.363: INFO: stderr: "" + Apr 5 18:47:47.363: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com \"test-foo\" deleted\n" + Apr 5 18:47:47.363: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' + Apr 5 18:47:47.830: INFO: stderr: "" + Apr 5 18:47:47.830: INFO: stdout: "e2e-test-crd-publish-openapi-6939-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" + Apr 5 18:47:47.830: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 delete e2e-test-crd-publish-openapi-6939-crds test-foo' + Apr 5 18:47:47.980: INFO: stderr: "" + Apr 5 18:47:47.980: INFO: stdout: "e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:47.98 + Apr 5 18:47:47.981: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' + Apr 5 18:47:48.420: INFO: rc: 1 + STEP: kubectl validation (kubectl create and apply) rejects request with unknown properties when disallowed by the schema 04/05/23 18:47:48.421 + Apr 5 18:47:48.421: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' + Apr 5 18:47:49.693: INFO: rc: 1 + Apr 5 18:47:49.694: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' + Apr 5 18:47:50.930: INFO: rc: 1 + STEP: kubectl validation (kubectl create and apply) rejects request without required properties 04/05/23 18:47:50.93 + Apr 5 18:47:50.931: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 create -f -' + Apr 5 18:47:51.371: INFO: rc: 1 + Apr 5 18:47:51.371: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 --namespace=crd-publish-openapi-6957 apply -f -' + Apr 5 18:47:51.808: INFO: rc: 1 + STEP: kubectl explain works to explain CR properties 04/05/23 18:47:51.808 + Apr 5 18:47:51.808: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds' + Apr 5 18:47:52.224: INFO: stderr: "" + Apr 5 18:47:52.224: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:52.225 + Apr 5 18:47:52.225: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.metadata' + Apr 5 18:47:52.666: INFO: stderr: "" + Apr 5 18:47:52.666: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 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" + Apr 5 18:47:52.667: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec' + Apr 5 18:47:53.119: INFO: stderr: "" + Apr 5 18:47:53.119: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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" + Apr 5 18:47:53.120: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec.bars' + Apr 5 18:47:53.561: INFO: stderr: "" + Apr 5 18:47:53.561: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6939-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 04/05/23 18:47:53.561 + Apr 5 18:47:53.561: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6957 explain e2e-test-crd-publish-openapi-6939-crds.spec.bars2' + Apr 5 18:47:54.010: INFO: rc: 1 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:47:58.407: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-6957" for this suite. 04/05/23 18:47:58.419 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:398 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:47:58.436 +Apr 5 18:47:58.436: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 18:47:58.437 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:47:58.453 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:47:58.456 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:398 +STEP: creating the pod 04/05/23 18:47:58.46 +STEP: submitting the pod to kubernetes 04/05/23 18:47:58.461 +Apr 5 18:47:58.474: INFO: Waiting up to 5m0s for pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" in namespace "pods-2036" to be "running and ready" +Apr 5 18:47:58.479: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.724823ms +Apr 5 18:47:58.479: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:48:00.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009783652s +Apr 5 18:48:00.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:48:02.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009525488s +Apr 5 18:48:02.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:48:04.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Running", Reason="", readiness=true. Elapsed: 6.010093417s +Apr 5 18:48:04.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Running (Ready = true) +Apr 5 18:48:04.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" satisfied condition "running and ready" +STEP: verifying the pod is in kubernetes 04/05/23 18:48:04.488 +STEP: updating the pod 04/05/23 18:48:04.491 +Apr 5 18:48:05.004: INFO: Successfully updated pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" +Apr 5 18:48:05.004: INFO: Waiting up to 5m0s for pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" in namespace "pods-2036" to be "terminated with reason DeadlineExceeded" +Apr 5 18:48:05.007: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Running", Reason="", readiness=true. Elapsed: 2.599164ms +Apr 5 18:48:07.011: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Failed", Reason="DeadlineExceeded", readiness=false. Elapsed: 2.007099988s +Apr 5 18:48:07.011: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" satisfied condition "terminated with reason DeadlineExceeded" +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 18:48:07.012: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-2036" for this suite. 04/05/23 18:48:07.018 +------------------------------ +• [SLOW TEST] [8.589 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:398 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:47:58.436 + Apr 5 18:47:58.436: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 18:47:58.437 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:47:58.453 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:47:58.456 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:398 + STEP: creating the pod 04/05/23 18:47:58.46 + STEP: submitting the pod to kubernetes 04/05/23 18:47:58.461 + Apr 5 18:47:58.474: INFO: Waiting up to 5m0s for pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" in namespace "pods-2036" to be "running and ready" + Apr 5 18:47:58.479: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.724823ms + Apr 5 18:47:58.479: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:48:00.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009783652s + Apr 5 18:48:00.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:48:02.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009525488s + Apr 5 18:48:02.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:48:04.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Running", Reason="", readiness=true. Elapsed: 6.010093417s + Apr 5 18:48:04.484: INFO: The phase of Pod pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1 is Running (Ready = true) + Apr 5 18:48:04.484: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" satisfied condition "running and ready" + STEP: verifying the pod is in kubernetes 04/05/23 18:48:04.488 + STEP: updating the pod 04/05/23 18:48:04.491 + Apr 5 18:48:05.004: INFO: Successfully updated pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" + Apr 5 18:48:05.004: INFO: Waiting up to 5m0s for pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" in namespace "pods-2036" to be "terminated with reason DeadlineExceeded" + Apr 5 18:48:05.007: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Running", Reason="", readiness=true. Elapsed: 2.599164ms + Apr 5 18:48:07.011: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1": Phase="Failed", Reason="DeadlineExceeded", readiness=false. Elapsed: 2.007099988s + Apr 5 18:48:07.011: INFO: Pod "pod-update-activedeadlineseconds-4a707e32-0056-44b5-9c08-5ea1722a69d1" satisfied condition "terminated with reason DeadlineExceeded" + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 18:48:07.012: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-2036" for this suite. 04/05/23 18:48:07.018 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/apps/cronjob.go:160 +[BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:48:07.028 +Apr 5 18:48:07.028: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename cronjob 04/05/23 18:48:07.029 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:48:07.045 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:48:07.048 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 +[It] should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/apps/cronjob.go:160 +STEP: Creating a ReplaceConcurrent cronjob 04/05/23 18:48:07.052 +STEP: Ensuring a job is scheduled 04/05/23 18:48:07.057 +STEP: Ensuring exactly one is scheduled 04/05/23 18:49:01.063 +STEP: Ensuring exactly one running job exists by listing jobs explicitly 04/05/23 18:49:01.067 +STEP: Ensuring the job is replaced with a new one 04/05/23 18:49:01.071 +STEP: Removing cronjob 04/05/23 18:50:01.076 +[AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 +Apr 5 18:50:01.084: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 +STEP: Destroying namespace "cronjob-257" for this suite. 04/05/23 18:50:01.089 +------------------------------ +• [SLOW TEST] [114.070 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/apps/cronjob.go:160 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:48:07.028 + Apr 5 18:48:07.028: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename cronjob 04/05/23 18:48:07.029 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:48:07.045 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:48:07.048 + [BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 + [It] should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/apps/cronjob.go:160 + STEP: Creating a ReplaceConcurrent cronjob 04/05/23 18:48:07.052 + STEP: Ensuring a job is scheduled 04/05/23 18:48:07.057 + STEP: Ensuring exactly one is scheduled 04/05/23 18:49:01.063 + STEP: Ensuring exactly one running job exists by listing jobs explicitly 04/05/23 18:49:01.067 + STEP: Ensuring the job is replaced with a new one 04/05/23 18:49:01.071 + STEP: Removing cronjob 04/05/23 18:50:01.076 + [AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 + Apr 5 18:50:01.084: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 + STEP: Destroying namespace "cronjob-257" for this suite. 04/05/23 18:50:01.089 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:255 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:50:01.1 +Apr 5 18:50:01.100: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename init-container 04/05/23 18:50:01.101 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:01.123 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:01.126 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 +[It] should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:255 +STEP: creating the pod 04/05/23 18:50:01.129 +Apr 5 18:50:01.130: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:50:07.993: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "init-container-5181" for this suite. 04/05/23 18:50:07.999 +------------------------------ +• [SLOW TEST] [6.906 seconds] +[sig-node] InitContainer [NodeConformance] +test/e2e/common/node/framework.go:23 + should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:255 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:50:01.1 + Apr 5 18:50:01.100: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename init-container 04/05/23 18:50:01.101 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:01.123 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:01.126 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 + [It] should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:255 + STEP: creating the pod 04/05/23 18:50:01.129 + Apr 5 18:50:01.130: INFO: PodSpec: initContainers in spec.initContainers + [AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:50:07.993: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "init-container-5181" for this suite. 04/05/23 18:50:07.999 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-network] EndpointSliceMirroring + should mirror a custom Endpoints resource through create update and delete [Conformance] + test/e2e/network/endpointslicemirroring.go:53 +[BeforeEach] [sig-network] EndpointSliceMirroring + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:50:08.007 +Apr 5 18:50:08.007: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename endpointslicemirroring 04/05/23 18:50:08.008 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:08.023 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:08.026 +[BeforeEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/metrics/init/init.go:31 +[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/network/endpointslicemirroring.go:53 +STEP: mirroring a new custom Endpoint 04/05/23 18:50:08.052 +Apr 5 18:50:08.062: INFO: Waiting for at least 1 EndpointSlice to exist, got 0 +STEP: mirroring an update to a custom Endpoint 04/05/23 18:50:10.067 +STEP: mirroring deletion of a custom Endpoint 04/05/23 18:50:10.084 +Apr 5 18:50:10.092: INFO: Waiting for 0 EndpointSlices to exist, got 1 +[AfterEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/node/init/init.go:32 +Apr 5 18:50:12.097: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + tear down framework | framework.go:193 +STEP: Destroying namespace "endpointslicemirroring-6535" for this suite. 04/05/23 18:50:12.103 +------------------------------ +• [4.103 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/network/endpointslicemirroring.go:53 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] EndpointSliceMirroring + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:50:08.007 + Apr 5 18:50:08.007: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename endpointslicemirroring 04/05/23 18:50:08.008 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:08.023 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:08.026 + [BeforeEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/metrics/init/init.go:31 + [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/network/endpointslicemirroring.go:53 + STEP: mirroring a new custom Endpoint 04/05/23 18:50:08.052 + Apr 5 18:50:08.062: INFO: Waiting for at least 1 EndpointSlice to exist, got 0 + STEP: mirroring an update to a custom Endpoint 04/05/23 18:50:10.067 + STEP: mirroring deletion of a custom Endpoint 04/05/23 18:50:10.084 + Apr 5 18:50:10.092: INFO: Waiting for 0 EndpointSlices to exist, got 1 + [AfterEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/node/init/init.go:32 + Apr 5 18:50:12.097: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] EndpointSliceMirroring + tear down framework | framework.go:193 + STEP: Destroying namespace "endpointslicemirroring-6535" for this suite. 04/05/23 18:50:12.103 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for pods for Hostname [Conformance] + test/e2e/network/dns.go:248 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:50:12.115 +Apr 5 18:50:12.115: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 18:50:12.116 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:12.131 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:12.135 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide DNS for pods for Hostname [Conformance] + test/e2e/network/dns.go:248 +STEP: Creating a test headless service 04/05/23 18:50:12.137 +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-6492.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-2.dns-test-service-2.dns-6492.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/wheezy_hosts@dns-querier-2;sleep 1; done + 04/05/23 18:50:12.142 +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-6492.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-2.dns-test-service-2.dns-6492.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/jessie_hosts@dns-querier-2;sleep 1; done + 04/05/23 18:50:12.142 +STEP: creating a pod to probe DNS 04/05/23 18:50:12.143 +STEP: submitting the pod to kubernetes 04/05/23 18:50:12.143 +Apr 5 18:50:12.152: INFO: Waiting up to 15m0s for pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c" in namespace "dns-6492" to be "running" +Apr 5 18:50:12.156: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.20386ms +Apr 5 18:50:14.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007304373s +Apr 5 18:50:16.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009109422s +Apr 5 18:50:18.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008036941s +Apr 5 18:50:20.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007968226s +Apr 5 18:50:22.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008071804s +Apr 5 18:50:24.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 12.00798087s +Apr 5 18:50:26.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009207386s +Apr 5 18:50:28.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 16.00970565s +Apr 5 18:50:30.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 18.009047253s +Apr 5 18:50:32.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 20.007480172s +Apr 5 18:50:34.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 22.007587182s +Apr 5 18:50:36.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Running", Reason="", readiness=true. Elapsed: 24.008306057s +Apr 5 18:50:36.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c" satisfied condition "running" +STEP: retrieving the pod 04/05/23 18:50:36.161 +STEP: looking for the results for each expected name from probers 04/05/23 18:50:36.165 +Apr 5 18:50:36.182: INFO: DNS probes using dns-6492/dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c succeeded + +STEP: deleting the pod 04/05/23 18:50:36.182 +STEP: deleting the test headless service 04/05/23 18:50:36.2 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 18:50:36.226: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-6492" for this suite. 04/05/23 18:50:36.232 +------------------------------ +• [SLOW TEST] [24.125 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for pods for Hostname [Conformance] + test/e2e/network/dns.go:248 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:50:12.115 + Apr 5 18:50:12.115: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 18:50:12.116 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:12.131 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:12.135 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide DNS for pods for Hostname [Conformance] + test/e2e/network/dns.go:248 + STEP: Creating a test headless service 04/05/23 18:50:12.137 + 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-6492.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-2.dns-test-service-2.dns-6492.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/wheezy_hosts@dns-querier-2;sleep 1; done + 04/05/23 18:50:12.142 + 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-6492.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-2.dns-test-service-2.dns-6492.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/jessie_hosts@dns-querier-2;sleep 1; done + 04/05/23 18:50:12.142 + STEP: creating a pod to probe DNS 04/05/23 18:50:12.143 + STEP: submitting the pod to kubernetes 04/05/23 18:50:12.143 + Apr 5 18:50:12.152: INFO: Waiting up to 15m0s for pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c" in namespace "dns-6492" to be "running" + Apr 5 18:50:12.156: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.20386ms + Apr 5 18:50:14.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007304373s + Apr 5 18:50:16.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009109422s + Apr 5 18:50:18.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008036941s + Apr 5 18:50:20.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007968226s + Apr 5 18:50:22.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008071804s + Apr 5 18:50:24.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 12.00798087s + Apr 5 18:50:26.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009207386s + Apr 5 18:50:28.162: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 16.00970565s + Apr 5 18:50:30.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 18.009047253s + Apr 5 18:50:32.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 20.007480172s + Apr 5 18:50:34.160: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Pending", Reason="", readiness=false. Elapsed: 22.007587182s + Apr 5 18:50:36.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c": Phase="Running", Reason="", readiness=true. Elapsed: 24.008306057s + Apr 5 18:50:36.161: INFO: Pod "dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c" satisfied condition "running" + STEP: retrieving the pod 04/05/23 18:50:36.161 + STEP: looking for the results for each expected name from probers 04/05/23 18:50:36.165 + Apr 5 18:50:36.182: INFO: DNS probes using dns-6492/dns-test-46c8ca2d-156c-4bbf-8959-308065ad492c succeeded + + STEP: deleting the pod 04/05/23 18:50:36.182 + STEP: deleting the test headless service 04/05/23 18:50:36.2 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 18:50:36.226: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-6492" for this suite. 04/05/23 18:50:36.232 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl server-side dry-run + should check if kubectl can dry-run update Pods [Conformance] + test/e2e/kubectl/kubectl.go:962 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:50:36.24 +Apr 5 18:50:36.240: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 18:50:36.241 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:36.26 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:36.262 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check if kubectl can dry-run update Pods [Conformance] + test/e2e/kubectl/kubectl.go:962 +STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 18:50:36.267 +Apr 5 18:50:36.267: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 run e2e-test-httpd-pod --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' +Apr 5 18:50:36.366: INFO: stderr: "" +Apr 5 18:50:36.367: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: replace the image in the pod with server-side dry-run 04/05/23 18:50:36.367 +Apr 5 18:50:36.367: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 patch pod e2e-test-httpd-pod -p {"spec":{"containers":[{"name": "e2e-test-httpd-pod","image": "registry.k8s.io/e2e-test-images/busybox:1.29-4"}]}} --dry-run=server' +Apr 5 18:50:37.831: INFO: stderr: "" +Apr 5 18:50:37.831: INFO: stdout: "pod/e2e-test-httpd-pod patched\n" +STEP: verifying the pod e2e-test-httpd-pod has the right image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 18:50:37.832 +Apr 5 18:50:37.836: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 delete pods e2e-test-httpd-pod' +Apr 5 18:50:53.224: INFO: stderr: "" +Apr 5 18:50:53.224: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 18:50:53.224: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-6862" for this suite. 04/05/23 18:50:53.23 +------------------------------ +• [SLOW TEST] [16.997 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl server-side dry-run + test/e2e/kubectl/kubectl.go:956 + should check if kubectl can dry-run update Pods [Conformance] + test/e2e/kubectl/kubectl.go:962 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:50:36.24 + Apr 5 18:50:36.240: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 18:50:36.241 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:36.26 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:36.262 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check if kubectl can dry-run update Pods [Conformance] + test/e2e/kubectl/kubectl.go:962 + STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 18:50:36.267 + Apr 5 18:50:36.267: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 run e2e-test-httpd-pod --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' + Apr 5 18:50:36.366: INFO: stderr: "" + Apr 5 18:50:36.367: INFO: stdout: "pod/e2e-test-httpd-pod created\n" + STEP: replace the image in the pod with server-side dry-run 04/05/23 18:50:36.367 + Apr 5 18:50:36.367: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 patch pod e2e-test-httpd-pod -p {"spec":{"containers":[{"name": "e2e-test-httpd-pod","image": "registry.k8s.io/e2e-test-images/busybox:1.29-4"}]}} --dry-run=server' + Apr 5 18:50:37.831: INFO: stderr: "" + Apr 5 18:50:37.831: INFO: stdout: "pod/e2e-test-httpd-pod patched\n" + STEP: verifying the pod e2e-test-httpd-pod has the right image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 18:50:37.832 + Apr 5 18:50:37.836: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-6862 delete pods e2e-test-httpd-pod' + Apr 5 18:50:53.224: INFO: stderr: "" + Apr 5 18:50:53.224: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 18:50:53.224: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-6862" for this suite. 04/05/23 18:50:53.23 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for pods for Subdomain [Conformance] + test/e2e/network/dns.go:290 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:50:53.252 +Apr 5 18:50:53.252: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 18:50:53.253 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:53.269 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:53.272 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide DNS for pods for Subdomain [Conformance] + test/e2e/network/dns.go:290 +STEP: Creating a test headless service 04/05/23 18:50:53.276 +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-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local;sleep 1; done + 04/05/23 18:50:53.283 +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-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local;sleep 1; done + 04/05/23 18:50:53.283 +STEP: creating a pod to probe DNS 04/05/23 18:50:53.283 +STEP: submitting the pod to kubernetes 04/05/23 18:50:53.283 +Apr 5 18:50:53.297: INFO: Waiting up to 15m0s for pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13" in namespace "dns-6001" to be "running" +Apr 5 18:50:53.300: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 2.867199ms +Apr 5 18:50:55.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007326498s +Apr 5 18:50:57.305: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007982983s +Apr 5 18:50:59.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Running", Reason="", readiness=true. Elapsed: 6.007394442s +Apr 5 18:50:59.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13" satisfied condition "running" +STEP: retrieving the pod 04/05/23 18:50:59.304 +STEP: looking for the results for each expected name from probers 04/05/23 18:50:59.309 +Apr 5 18:50:59.315: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.319: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.324: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.327: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.332: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.337: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.341: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.346: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:50:59.346: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:04.352: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.357: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.361: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.365: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.368: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.372: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.376: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.379: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:04.379: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:09.352: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.357: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.361: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.365: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.369: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.373: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.377: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.381: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:09.381: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:14.356: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.361: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.366: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.370: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.374: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.378: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.381: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.385: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:14.385: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:19.355: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.360: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.364: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.367: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.371: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.374: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.378: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.382: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:19.382: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:24.356: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.361: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.366: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.370: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.374: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.378: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.382: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.385: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) +Apr 5 18:51:24.385: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + +Apr 5 18:51:29.384: INFO: DNS probes using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 succeeded + +STEP: deleting the pod 04/05/23 18:51:29.384 +STEP: deleting the test headless service 04/05/23 18:51:29.397 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 18:51:29.410: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-6001" for this suite. 04/05/23 18:51:29.417 +------------------------------ +• [SLOW TEST] [36.172 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for pods for Subdomain [Conformance] + test/e2e/network/dns.go:290 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:50:53.252 + Apr 5 18:50:53.252: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 18:50:53.253 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:50:53.269 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:50:53.272 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide DNS for pods for Subdomain [Conformance] + test/e2e/network/dns.go:290 + STEP: Creating a test headless service 04/05/23 18:50:53.276 + 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-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local;sleep 1; done + 04/05/23 18:50:53.283 + 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-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-6001.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local;sleep 1; done + 04/05/23 18:50:53.283 + STEP: creating a pod to probe DNS 04/05/23 18:50:53.283 + STEP: submitting the pod to kubernetes 04/05/23 18:50:53.283 + Apr 5 18:50:53.297: INFO: Waiting up to 15m0s for pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13" in namespace "dns-6001" to be "running" + Apr 5 18:50:53.300: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 2.867199ms + Apr 5 18:50:55.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007326498s + Apr 5 18:50:57.305: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007982983s + Apr 5 18:50:59.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13": Phase="Running", Reason="", readiness=true. Elapsed: 6.007394442s + Apr 5 18:50:59.304: INFO: Pod "dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13" satisfied condition "running" + STEP: retrieving the pod 04/05/23 18:50:59.304 + STEP: looking for the results for each expected name from probers 04/05/23 18:50:59.309 + Apr 5 18:50:59.315: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.319: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.324: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.327: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.332: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.337: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.341: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.346: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:50:59.346: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:04.352: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.357: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.361: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.365: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.368: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.372: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.376: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.379: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:04.379: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:09.352: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.357: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.361: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.365: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.369: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.373: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.377: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.381: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:09.381: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:14.356: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.361: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.366: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.370: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.374: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.378: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.381: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.385: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:14.385: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:19.355: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.360: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.364: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.367: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.371: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.374: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.378: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.382: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:19.382: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:24.356: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.361: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.366: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.370: INFO: Unable to read wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.374: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.378: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.382: INFO: Unable to read jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.385: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local from pod dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13: the server could not find the requested resource (get pods dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13) + Apr 5 18:51:24.385: INFO: Lookups using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local wheezy_udp@dns-test-service-2.dns-6001.svc.cluster.local wheezy_tcp@dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-6001.svc.cluster.local jessie_udp@dns-test-service-2.dns-6001.svc.cluster.local jessie_tcp@dns-test-service-2.dns-6001.svc.cluster.local] + + Apr 5 18:51:29.384: INFO: DNS probes using dns-6001/dns-test-61f9bfb6-2b20-4ec1-b373-19043424ba13 succeeded + + STEP: deleting the pod 04/05/23 18:51:29.384 + STEP: deleting the test headless service 04/05/23 18:51:29.397 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 18:51:29.410: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-6001" for this suite. 04/05/23 18:51:29.417 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:105 +[BeforeEach] [sig-network] Networking + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:51:29.434 +Apr 5 18:51:29.434: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pod-network-test 04/05/23 18:51:29.435 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:51:29.456 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:51:29.459 +[BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 +[It] should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:105 +STEP: Performing setup for networking test in namespace pod-network-test-8902 04/05/23 18:51:29.462 +STEP: creating a selector 04/05/23 18:51:29.462 +STEP: Creating the service pods in kubernetes 04/05/23 18:51:29.462 +Apr 5 18:51:29.462: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Apr 5 18:51:29.498: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-8902" to be "running and ready" +Apr 5 18:51:29.501: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 3.215607ms +Apr 5 18:51:29.501: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:51:31.505: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007608484s +Apr 5 18:51:31.505: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:51:33.504: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006777164s +Apr 5 18:51:33.504: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:51:35.505: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00787586s +Apr 5 18:51:35.506: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:51:37.506: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 8.008675793s +Apr 5 18:51:37.506: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:51:39.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.008293344s +Apr 5 18:51:39.506: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:41.508: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.010460813s +Apr 5 18:51:41.508: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:43.507: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.009033247s +Apr 5 18:51:43.507: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:45.507: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.00915206s +Apr 5 18:51:45.507: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:47.505: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.007433132s +Apr 5 18:51:47.505: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:49.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.008462889s +Apr 5 18:51:49.506: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 18:51:51.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.008039219s +Apr 5 18:51:51.506: INFO: The phase of Pod netserver-0 is Running (Ready = true) +Apr 5 18:51:51.506: INFO: Pod "netserver-0" satisfied condition "running and ready" +Apr 5 18:51:51.509: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-8902" to be "running and ready" +Apr 5 18:51:51.514: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 4.532804ms +Apr 5 18:51:51.514: INFO: The phase of Pod netserver-1 is Running (Ready = true) +Apr 5 18:51:51.514: INFO: Pod "netserver-1" satisfied condition "running and ready" +Apr 5 18:51:51.516: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-8902" to be "running and ready" +Apr 5 18:51:51.519: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.027107ms +Apr 5 18:51:51.519: INFO: The phase of Pod netserver-2 is Running (Ready = true) +Apr 5 18:51:51.519: INFO: Pod "netserver-2" satisfied condition "running and ready" +STEP: Creating test pods 04/05/23 18:51:51.522 +Apr 5 18:51:51.534: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-8902" to be "running" +Apr 5 18:51:51.539: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.658231ms +Apr 5 18:51:53.543: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009276507s +Apr 5 18:51:55.545: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01066853s +Apr 5 18:51:57.543: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.008833432s +Apr 5 18:51:57.543: INFO: Pod "test-container-pod" satisfied condition "running" +Apr 5 18:51:57.548: INFO: Waiting up to 5m0s for pod "host-test-container-pod" in namespace "pod-network-test-8902" to be "running" +Apr 5 18:51:57.552: INFO: Pod "host-test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 3.919467ms +Apr 5 18:51:57.552: INFO: Pod "host-test-container-pod" satisfied condition "running" +Apr 5 18:51:57.555: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Apr 5 18:51:57.555: INFO: Going to poll 192.168.2.16 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Apr 5 18:51:57.559: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.2.16:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 18:51:57.559: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:51:57.559: INFO: ExecWithOptions: Clientset creation +Apr 5 18:51:57.559: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.2.16%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 18:51:57.643: INFO: Found all 1 expected endpoints: [netserver-0] +Apr 5 18:51:57.644: INFO: Going to poll 192.168.3.21 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Apr 5 18:51:57.648: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.3.21:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 18:51:57.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:51:57.649: INFO: ExecWithOptions: Clientset creation +Apr 5 18:51:57.649: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.3.21%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 18:51:57.730: INFO: Found all 1 expected endpoints: [netserver-1] +Apr 5 18:51:57.730: INFO: Going to poll 192.168.1.158 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Apr 5 18:51:57.734: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.1.158:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 18:51:57.734: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:51:57.734: INFO: ExecWithOptions: Clientset creation +Apr 5 18:51:57.734: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.1.158%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 18:51:57.820: INFO: Found all 1 expected endpoints: [netserver-2] +[AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 +Apr 5 18:51:57.820: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 +STEP: Destroying namespace "pod-network-test-8902" for this suite. 04/05/23 18:51:57.828 +------------------------------ +• [SLOW TEST] [28.401 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/common/network/networking.go:105 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Networking + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:51:29.434 + Apr 5 18:51:29.434: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pod-network-test 04/05/23 18:51:29.435 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:51:29.456 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:51:29.459 + [BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 + [It] should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:105 + STEP: Performing setup for networking test in namespace pod-network-test-8902 04/05/23 18:51:29.462 + STEP: creating a selector 04/05/23 18:51:29.462 + STEP: Creating the service pods in kubernetes 04/05/23 18:51:29.462 + Apr 5 18:51:29.462: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable + Apr 5 18:51:29.498: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-8902" to be "running and ready" + Apr 5 18:51:29.501: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 3.215607ms + Apr 5 18:51:29.501: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:51:31.505: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007608484s + Apr 5 18:51:31.505: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:51:33.504: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006777164s + Apr 5 18:51:33.504: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:51:35.505: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00787586s + Apr 5 18:51:35.506: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:51:37.506: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 8.008675793s + Apr 5 18:51:37.506: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:51:39.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.008293344s + Apr 5 18:51:39.506: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:41.508: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.010460813s + Apr 5 18:51:41.508: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:43.507: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.009033247s + Apr 5 18:51:43.507: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:45.507: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.00915206s + Apr 5 18:51:45.507: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:47.505: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.007433132s + Apr 5 18:51:47.505: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:49.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.008462889s + Apr 5 18:51:49.506: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 18:51:51.506: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.008039219s + Apr 5 18:51:51.506: INFO: The phase of Pod netserver-0 is Running (Ready = true) + Apr 5 18:51:51.506: INFO: Pod "netserver-0" satisfied condition "running and ready" + Apr 5 18:51:51.509: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-8902" to be "running and ready" + Apr 5 18:51:51.514: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 4.532804ms + Apr 5 18:51:51.514: INFO: The phase of Pod netserver-1 is Running (Ready = true) + Apr 5 18:51:51.514: INFO: Pod "netserver-1" satisfied condition "running and ready" + Apr 5 18:51:51.516: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-8902" to be "running and ready" + Apr 5 18:51:51.519: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.027107ms + Apr 5 18:51:51.519: INFO: The phase of Pod netserver-2 is Running (Ready = true) + Apr 5 18:51:51.519: INFO: Pod "netserver-2" satisfied condition "running and ready" + STEP: Creating test pods 04/05/23 18:51:51.522 + Apr 5 18:51:51.534: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-8902" to be "running" + Apr 5 18:51:51.539: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.658231ms + Apr 5 18:51:53.543: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009276507s + Apr 5 18:51:55.545: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01066853s + Apr 5 18:51:57.543: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.008833432s + Apr 5 18:51:57.543: INFO: Pod "test-container-pod" satisfied condition "running" + Apr 5 18:51:57.548: INFO: Waiting up to 5m0s for pod "host-test-container-pod" in namespace "pod-network-test-8902" to be "running" + Apr 5 18:51:57.552: INFO: Pod "host-test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 3.919467ms + Apr 5 18:51:57.552: INFO: Pod "host-test-container-pod" satisfied condition "running" + Apr 5 18:51:57.555: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 + Apr 5 18:51:57.555: INFO: Going to poll 192.168.2.16 on port 8083 at least 0 times, with a maximum of 39 tries before failing + Apr 5 18:51:57.559: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.2.16:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 18:51:57.559: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:51:57.559: INFO: ExecWithOptions: Clientset creation + Apr 5 18:51:57.559: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.2.16%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 18:51:57.643: INFO: Found all 1 expected endpoints: [netserver-0] + Apr 5 18:51:57.644: INFO: Going to poll 192.168.3.21 on port 8083 at least 0 times, with a maximum of 39 tries before failing + Apr 5 18:51:57.648: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.3.21:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 18:51:57.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:51:57.649: INFO: ExecWithOptions: Clientset creation + Apr 5 18:51:57.649: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.3.21%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 18:51:57.730: INFO: Found all 1 expected endpoints: [netserver-1] + Apr 5 18:51:57.730: INFO: Going to poll 192.168.1.158 on port 8083 at least 0 times, with a maximum of 39 tries before failing + Apr 5 18:51:57.734: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.1.158:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-8902 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 18:51:57.734: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:51:57.734: INFO: ExecWithOptions: Clientset creation + Apr 5 18:51:57.734: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8902/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%2F192.168.1.158%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 18:51:57.820: INFO: Found all 1 expected endpoints: [netserver-2] + [AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 + Apr 5 18:51:57.820: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 + STEP: Destroying namespace "pod-network-test-8902" for this suite. 04/05/23 18:51:57.828 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:357 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:51:57.837 +Apr 5 18:51:57.837: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:51:57.838 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:51:57.855 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:51:57.858 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:357 +STEP: CRs in the same group and version but different kinds (two CRDs) show up in OpenAPI documentation 04/05/23 18:51:57.862 +Apr 5 18:51:57.862: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:52:01.941: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:52:15.855: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-512" for this suite. 04/05/23 18:52:15.867 +------------------------------ +• [SLOW TEST] [18.038 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/apimachinery/crd_publish_openapi.go:357 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:51:57.837 + Apr 5 18:51:57.837: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 18:51:57.838 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:51:57.855 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:51:57.858 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:357 + STEP: CRs in the same group and version but different kinds (two CRDs) show up in OpenAPI documentation 04/05/23 18:51:57.862 + Apr 5 18:51:57.862: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:52:01.941: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:52:15.855: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-512" for this suite. 04/05/23 18:52:15.867 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] Deployment + deployment should support proportional scaling [Conformance] + test/e2e/apps/deployment.go:160 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:52:15.876 +Apr 5 18:52:15.876: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 18:52:15.877 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:15.894 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:15.898 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should support proportional scaling [Conformance] + test/e2e/apps/deployment.go:160 +Apr 5 18:52:15.902: INFO: Creating deployment "webserver-deployment" +Apr 5 18:52:15.909: INFO: Waiting for observed generation 1 +Apr 5 18:52:17.918: INFO: Waiting for all required pods to come up +Apr 5 18:52:17.930: INFO: Pod name httpd: Found 10 pods out of 10 +STEP: ensuring each pod is running 04/05/23 18:52:17.931 +Apr 5 18:52:17.931: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-8dt2k" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.932: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-88bxd" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.932: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hdqsx" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-zrl5w" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-j8np9" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-sz7wm" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-v5f8t" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-wdhjw" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hp5sk" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hfj8z" in namespace "deployment-482" to be "running" +Apr 5 18:52:17.937: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 5.606147ms +Apr 5 18:52:17.937: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 5.236562ms +Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 6.380588ms +Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.490026ms +Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 4.840465ms +Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 3.966162ms +Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 18.008228ms +Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 17.423498ms +Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 17.188989ms +Apr 5 18:52:17.973: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 37.932758ms +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31234929s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31267783s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31444337s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311789406s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31368636s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311439189s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311129678s +Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31439955s +Apr 5 18:52:20.898: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 2.96409976s +Apr 5 18:52:20.898: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 2.962874209s +Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013402472s +Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012147546s +Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013440312s +Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011226976s +Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013058625s +Apr 5 18:52:21.947: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013723011s +Apr 5 18:52:21.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020756485s +Apr 5 18:52:21.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 4.022555978s +Apr 5 18:52:21.957: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 4.02211707s +Apr 5 18:52:21.978: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 4.04303934s +Apr 5 18:52:23.941: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009336814s +Apr 5 18:52:23.941: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008200311s +Apr 5 18:52:23.942: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009491576s +Apr 5 18:52:23.942: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010787034s +Apr 5 18:52:23.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009847513s +Apr 5 18:52:23.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009011283s +Apr 5 18:52:23.955: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 6.021450006s +Apr 5 18:52:23.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020914354s +Apr 5 18:52:23.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020971286s +Apr 5 18:52:23.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 6.042123605s +Apr 5 18:52:25.942: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009060263s +Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 8.010431588s +Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Running", Reason="", readiness=true. Elapsed: 8.009782477s +Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w" satisfied condition "running" +Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 8.012171317s +Apr 5 18:52:25.944: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 8.011825194s +Apr 5 18:52:25.944: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009914214s +Apr 5 18:52:25.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Running", Reason="", readiness=true. Elapsed: 8.020414071s +Apr 5 18:52:25.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw" satisfied condition "running" +Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Running", Reason="", readiness=true. Elapsed: 8.020698477s +Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk" satisfied condition "running" +Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Running", Reason="", readiness=true. Elapsed: 8.022252669s +Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm" satisfied condition "running" +Apr 5 18:52:25.976: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 8.041068092s +Apr 5 18:52:27.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010711052s +Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 10.011620922s +Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009895667s +Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 10.011020851s +Apr 5 18:52:27.944: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009516463s +Apr 5 18:52:27.979: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 10.043390439s +Apr 5 18:52:29.942: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009999826s +Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009376718s +Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011445978s +Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011506608s +Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009311858s +Apr 5 18:52:29.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 12.041631746s +Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011320635s +Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009801285s +Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009263577s +Apr 5 18:52:31.944: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011339547s +Apr 5 18:52:31.944: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 14.012116123s +Apr 5 18:52:31.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 14.041705835s +Apr 5 18:52:33.941: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009095226s +Apr 5 18:52:33.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 16.00991946s +Apr 5 18:52:33.942: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 16.008726613s +Apr 5 18:52:33.946: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 16.012245126s +Apr 5 18:52:33.947: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 16.015467546s +Apr 5 18:52:33.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Running", Reason="", readiness=true. Elapsed: 16.041880182s +Apr 5 18:52:33.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z" satisfied condition "running" +Apr 5 18:52:35.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Running", Reason="", readiness=true. Elapsed: 18.010680261s +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd" satisfied condition "running" +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Running", Reason="", readiness=true. Elapsed: 18.008651057s +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t" satisfied condition "running" +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Running", Reason="", readiness=true. Elapsed: 18.009659723s +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9" satisfied condition "running" +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Running", Reason="", readiness=true. Elapsed: 18.010819269s +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx" satisfied condition "running" +Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Running", Reason="", readiness=true. Elapsed: 18.01183555s +Apr 5 18:52:35.944: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k" satisfied condition "running" +Apr 5 18:52:35.944: INFO: Waiting for deployment "webserver-deployment" to complete +Apr 5 18:52:35.950: INFO: Updating deployment "webserver-deployment" with a non-existent image +Apr 5 18:52:35.960: INFO: Updating deployment webserver-deployment +Apr 5 18:52:35.960: INFO: Waiting for observed generation 2 +Apr 5 18:52:38.394: INFO: Waiting for the first rollout's replicaset to have .status.availableReplicas = 8 +Apr 5 18:52:38.437: INFO: Waiting for the first rollout's replicaset to have .spec.replicas = 8 +Apr 5 18:52:38.545: INFO: Waiting for the first rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas +Apr 5 18:52:38.766: INFO: Verifying that the second rollout's replicaset has .status.availableReplicas = 0 +Apr 5 18:52:38.766: INFO: Waiting for the second rollout's replicaset to have .spec.replicas = 5 +Apr 5 18:52:38.770: INFO: Waiting for the second rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas +Apr 5 18:52:38.776: INFO: Verifying that deployment "webserver-deployment" has minimum required number of available replicas +Apr 5 18:52:38.777: INFO: Scaling up the deployment "webserver-deployment" from 10 to 30 +Apr 5 18:52:38.802: INFO: Updating deployment webserver-deployment +Apr 5 18:52:38.803: INFO: Waiting for the replicasets of deployment "webserver-deployment" to have desired number of replicas +Apr 5 18:52:38.824: INFO: Verifying that first rollout's replicaset has .spec.replicas = 20 +Apr 5 18:52:41.522: INFO: Verifying that second rollout's replicaset has .spec.replicas = 13 +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 18:52:42.418: INFO: Deployment "webserver-deployment": +&Deployment{ObjectMeta:{webserver-deployment deployment-482 12c052f1-b251-4ab2-aa37-c9fbb1301134 83244 3 2023-04-05 18:52:15 +0000 UTC map[name:httpd] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 18:52:38 +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 2023-04-05 18:52:38 +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 0xc004b678d8 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:2023-04-05 18:52:38 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "webserver-deployment-d9f79cb5" is progressing.,LastUpdateTime:2023-04-05 18:52:38 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,},},ReadyReplicas:8,CollisionCount:nil,},} + +Apr 5 18:52:42.425: INFO: New ReplicaSet "webserver-deployment-d9f79cb5" of Deployment "webserver-deployment": +&ReplicaSet{ObjectMeta:{webserver-deployment-d9f79cb5 deployment-482 8abe710a-4d96-4482-be56-b16b81affd5c 83235 3 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment webserver-deployment 12c052f1-b251-4ab2-aa37-c9fbb1301134 0xc004b67dd7 0xc004b67dd8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 18:52:38 +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\":\"12c052f1-b251-4ab2-aa37-c9fbb1301134\"}":{}}},"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 2023-04-05 18:52:38 +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: d9f79cb5,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] 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 0xc004b67e78 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{},},} +Apr 5 18:52:42.425: INFO: All old ReplicaSets of Deployment "webserver-deployment": +Apr 5 18:52:42.425: INFO: &ReplicaSet{ObjectMeta:{webserver-deployment-7f5969cbc7 deployment-482 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 83234 3 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment webserver-deployment 12c052f1-b251-4ab2-aa37-c9fbb1301134 0xc004b67ce7 0xc004b67ce8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 18:52:38 +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\":\"12c052f1-b251-4ab2-aa37-c9fbb1301134\"}":{}}},"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 2023-04-05 18:52:38 +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: 7f5969cbc7,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc004b67d78 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{},},} +Apr 5 18:52:42.436: INFO: Pod "webserver-deployment-7f5969cbc7-5dvhx" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-5dvhx webserver-deployment-7f5969cbc7- deployment-482 c56fd9f5-1c48-4cfa-af32-bf1a32780691 83246 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8377 0xc004fc8378}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-vxpcv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-vxpcv,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.436: INFO: Pod "webserver-deployment-7f5969cbc7-6dq9v" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-6dq9v webserver-deployment-7f5969cbc7- deployment-482 675fbaf1-f91f-4166-9076-2c130e8d1638 83276 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8537 0xc004fc8538}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-7pvkf,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-7pvkf,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.437: INFO: Pod "webserver-deployment-7f5969cbc7-6dtp2" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-6dtp2 webserver-deployment-7f5969cbc7- deployment-482 8903d63a-a0a9-48cd-862d-7d7f8c3ce7c6 83236 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc86f7 0xc004fc86f8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-p966x,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-p966x,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.437: INFO: Pod "webserver-deployment-7f5969cbc7-7fz8p" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-7fz8p webserver-deployment-7f5969cbc7- deployment-482 35563173-8d9d-4672-975c-0de414cb0061 83314 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc88b7 0xc004fc88b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:41 +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-zvdrn,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zvdrn,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.438: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-88bxd webserver-deployment-7f5969cbc7- deployment-482 6d0d4a84-61f5-437b-9c39-16d302c4e2bc 83062 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8a77 0xc004fc8a78}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.200\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-c5qnp,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-c5qnp,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.200,StartTime:2023-04-05 18:52:16 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://1cfac5996bda467d939eab5faad9cea1e9d09d7338b46c0764b3e1c919d8fbc3,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.200,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.438: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-8dt2k webserver-deployment-7f5969cbc7- deployment-482 313eaa06-10f7-46bc-affd-2c4ee5671987 83065 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8c57 0xc004fc8c58}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.113\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-mvwk8,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-mvwk8,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.113,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://bb7280938312121503df3829f06c8a2bc4e6d801f6b7c6722e05419cecba7375,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.113,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.439: INFO: Pod "webserver-deployment-7f5969cbc7-brfc4" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-brfc4 webserver-deployment-7f5969cbc7- deployment-482 dd8ce591-950a-418b-a69f-6ceb523cee16 83238 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8e37 0xc004fc8e38}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-dmxdr,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-dmxdr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.439: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hdqsx webserver-deployment-7f5969cbc7- deployment-482 0f24c69b-d22c-4eb9-9091-15839e89e250 83068 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8ff7 0xc004fc8ff8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.2.137\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-f5vjc,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-f5vjc,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.137,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://792ac3acf67eb457fc1c0f142dfb1fec0beca2adee9f726e54deffbf5a4995db,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.137,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hfj8z webserver-deployment-7f5969cbc7- deployment-482 6f70e6db-f19f-4108-8ee4-3e82d63a5729 83037 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc91d7 0xc004fc91d8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:33 +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\":\"192.168.2.115\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-4ssmw,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-4ssmw,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:33 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:33 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.115,StartTime:2023-04-05 18:52:16 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://7f079ad4fa2eefbea60f3b6c4d860c0b228efb0daedfaf3998600b30b08cac97,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.115,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hp5sk webserver-deployment-7f5969cbc7- deployment-482 41c0c7e3-d51b-47cc-adda-078160780604 82939 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc93b7 0xc004fc93b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.3.44\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-fkdm7,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-fkdm7,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.44,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://4558fd841fb3a7e1585e1d72ce9c2c9b6c362dd3664261fdfe1c54216a127a37,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.44,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hzsl6" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hzsl6 webserver-deployment-7f5969cbc7- deployment-482 22e6ba39-6a83-4b7a-ae77-3fc15652c646 83263 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9597 0xc004fc9598}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-hk262,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hk262,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-j49mx" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-j49mx webserver-deployment-7f5969cbc7- deployment-482 a8a06295-9f1c-472a-8ee0-90494ec005ac 83229 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9757 0xc004fc9758}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-cnlnv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-cnlnv,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-j8np9 webserver-deployment-7f5969cbc7- deployment-482 2890b7fb-d1fb-45dc-917f-6e7ef32b48bb 83059 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9917 0xc004fc9918}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.92\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-dlx5b,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-dlx5b,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.92,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://ef76b89f6d736cef17114d8e51510f8fb194e46aa2e2cc5cc2733cb1e4b7ff03,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.92,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-mbqj5" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-mbqj5 webserver-deployment-7f5969cbc7- deployment-482 8a79f0e6-ee45-449c-a4e8-6095ff24b30d 83247 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9af7 0xc004fc9af8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-zzlcg,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zzlcg,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.447: INFO: Pod "webserver-deployment-7f5969cbc7-mw89k" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-mw89k webserver-deployment-7f5969cbc7- deployment-482 21e329e5-f691-4ad8-9c34-5ecce7544653 83279 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9cb7 0xc004fc9cb8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-879wt,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-879wt,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.447: INFO: Pod "webserver-deployment-7f5969cbc7-nm5n4" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-nm5n4 webserver-deployment-7f5969cbc7- deployment-482 d66e0f3d-0b35-4f3f-ba0c-73010b4ed380 83232 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9e77 0xc004fc9e78}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-psl66,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-psl66,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-pjppc" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-pjppc webserver-deployment-7f5969cbc7- deployment-482 8ab41a36-3f76-49b2-bf2e-898231008fdc 83220 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a2037 0xc0050a2038}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-j82g7,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-j82g7,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-v26mb" is not available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-v26mb webserver-deployment-7f5969cbc7- deployment-482 6addd920-f337-43c3-b472-b05d762d0091 83195 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a21f7 0xc0050a21f8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-lwwcq,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-lwwcq,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-v5f8t webserver-deployment-7f5969cbc7- deployment-482 2e122f03-4e09-4430-a098-82960fe077e6 83071 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a23b7 0xc0050a23b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.2.146\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-cv62g,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-cv62g,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.146,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://9aa3e8d3949bc303baa2f7f3ec37586ec61169da654f3b9ce72a874438b15a92,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.146,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.449: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w" is available: +&Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-zrl5w webserver-deployment-7f5969cbc7- deployment-482 2d0ed340-c122-4191-be43-e0f20a25c0d9 82945 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a2597 0xc0050a2598}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.3.81\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-t4zgx,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-t4zgx,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.81,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://a3278c3a4cfe7f2e91f245aa75910dd8cf7db47460a3394ba366d3bef0478d97,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.81,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.449: INFO: Pod "webserver-deployment-d9f79cb5-4gdhp" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-4gdhp webserver-deployment-d9f79cb5- deployment-482 f15bd8e8-2e64-4bb9-aa05-a59d69861c1d 83307 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2777 0xc0050a2778}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:40 +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\":\"192.168.1.232\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-frgrn,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-frgrn,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.232,StartTime:2023-04-05 18:52:36 +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:192.168.1.232,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-6277b" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-6277b webserver-deployment-d9f79cb5- deployment-482 c2323935-728b-484c-af72-8be38876e5e3 83254 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a296f 0xc0050a2980}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-zpggg,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zpggg,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-8z2wr" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-8z2wr webserver-deployment-d9f79cb5- deployment-482 ca103537-27ad-4303-ad30-8cdced4d8c34 83323 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2b3f 0xc0050a2b50}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:41 +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-qw5pb,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-qw5pb,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-992jh" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-992jh webserver-deployment-d9f79cb5- deployment-482 b7933851-4b00-4e34-8c49-13b87a7f71b4 83105 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2d27 0xc0050a2d28}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-txngr,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-txngr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:35 +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:2023-04-05 18:52:35 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:35 +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{},},} +Apr 5 18:52:42.451: INFO: Pod "webserver-deployment-d9f79cb5-f25bk" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-f25bk webserver-deployment-d9f79cb5- deployment-482 c5839fab-bbde-4893-a281-c849db19da68 83248 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2f07 0xc0050a2f08}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-nhxqr,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-nhxqr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-ffcbl" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-ffcbl webserver-deployment-d9f79cb5- deployment-482 65f89ad4-f1de-4935-b17a-df0cca009354 83215 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a30e7 0xc0050a30e8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-6f2bb,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-6f2bb,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-hnlwb" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-hnlwb webserver-deployment-d9f79cb5- deployment-482 cd30b4ab-8270-41e5-bfaa-441e16f09c02 83204 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a32c7 0xc0050a32c8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-fnh7m,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-fnh7m,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-jwhb8" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-jwhb8 webserver-deployment-d9f79cb5- deployment-482 d4012282-105d-4c5b-abb1-de24f15b5f75 83135 0 2023-04-05 18:52:36 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a34a7 0xc0050a34a8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:36 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-8vnnh,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-8vnnh,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:36 +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{},},} +Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-n7p9r" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-n7p9r webserver-deployment-d9f79cb5- deployment-482 fe58991c-af05-4d39-8cd0-667c89a29333 83241 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3687 0xc0050a3688}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-8m88r,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-8m88r,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-r2xtc" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-r2xtc webserver-deployment-d9f79cb5- deployment-482 a9c14bce-eb41-4c28-afb3-8fd9ac45ddae 83251 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a384f 0xc0050a3860}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-mbr46,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-mbr46,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-rcnp8" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-rcnp8 webserver-deployment-d9f79cb5- deployment-482 f6afa036-7897-4cce-98cc-ef9b547ebadd 83140 0 2023-04-05 18:52:36 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3a37 0xc0050a3a38}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:36 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-pjq89,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-pjq89,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:36 +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{},},} +Apr 5 18:52:42.454: INFO: Pod "webserver-deployment-d9f79cb5-tk75j" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-tk75j webserver-deployment-d9f79cb5- deployment-482 41e154bb-faae-4b2e-a44e-cf3e2d1399ce 83277 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3bff 0xc0050a3c10}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:39 +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-hc4r5,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hc4r5,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} +Apr 5 18:52:42.457: INFO: Pod "webserver-deployment-d9f79cb5-vvphw" is not available: +&Pod{ObjectMeta:{webserver-deployment-d9f79cb5-vvphw webserver-deployment-d9f79cb5- deployment-482 3c781f1c-97d7-4bcb-8985-0a9590ac19cf 83325 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3de7 0xc0050a3de8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:41 +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\":\"192.168.2.20\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-jgqwn,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-jgqwn,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.20,StartTime:2023-04-05 18:52:36 +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:192.168.2.20,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 18:52:42.457: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-482" for this suite. 04/05/23 18:52:42.466 +------------------------------ +• [SLOW TEST] [26.854 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should support proportional scaling [Conformance] + test/e2e/apps/deployment.go:160 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:52:15.876 + Apr 5 18:52:15.876: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 18:52:15.877 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:15.894 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:15.898 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] deployment should support proportional scaling [Conformance] + test/e2e/apps/deployment.go:160 + Apr 5 18:52:15.902: INFO: Creating deployment "webserver-deployment" + Apr 5 18:52:15.909: INFO: Waiting for observed generation 1 + Apr 5 18:52:17.918: INFO: Waiting for all required pods to come up + Apr 5 18:52:17.930: INFO: Pod name httpd: Found 10 pods out of 10 + STEP: ensuring each pod is running 04/05/23 18:52:17.931 + Apr 5 18:52:17.931: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-8dt2k" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.932: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-88bxd" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.932: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hdqsx" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-zrl5w" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-j8np9" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-sz7wm" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-v5f8t" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-wdhjw" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hp5sk" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.933: INFO: Waiting up to 5m0s for pod "webserver-deployment-7f5969cbc7-hfj8z" in namespace "deployment-482" to be "running" + Apr 5 18:52:17.937: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 5.606147ms + Apr 5 18:52:17.937: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 5.236562ms + Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 6.380588ms + Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.490026ms + Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 4.840465ms + Apr 5 18:52:17.938: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 3.966162ms + Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 18.008228ms + Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 17.423498ms + Apr 5 18:52:17.952: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 17.188989ms + Apr 5 18:52:17.973: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 37.932758ms + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31234929s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31267783s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31444337s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311789406s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31368636s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311439189s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311129678s + Apr 5 18:52:20.246: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.31439955s + Apr 5 18:52:20.898: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 2.96409976s + Apr 5 18:52:20.898: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 2.962874209s + Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013402472s + Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012147546s + Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013440312s + Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011226976s + Apr 5 18:52:21.945: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013058625s + Apr 5 18:52:21.947: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013723011s + Apr 5 18:52:21.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020756485s + Apr 5 18:52:21.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 4.022555978s + Apr 5 18:52:21.957: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 4.02211707s + Apr 5 18:52:21.978: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 4.04303934s + Apr 5 18:52:23.941: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009336814s + Apr 5 18:52:23.941: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008200311s + Apr 5 18:52:23.942: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009491576s + Apr 5 18:52:23.942: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010787034s + Apr 5 18:52:23.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009847513s + Apr 5 18:52:23.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009011283s + Apr 5 18:52:23.955: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Pending", Reason="", readiness=false. Elapsed: 6.021450006s + Apr 5 18:52:23.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020914354s + Apr 5 18:52:23.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020971286s + Apr 5 18:52:23.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 6.042123605s + Apr 5 18:52:25.942: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009060263s + Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 8.010431588s + Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w": Phase="Running", Reason="", readiness=true. Elapsed: 8.009782477s + Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w" satisfied condition "running" + Apr 5 18:52:25.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 8.012171317s + Apr 5 18:52:25.944: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 8.011825194s + Apr 5 18:52:25.944: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009914214s + Apr 5 18:52:25.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw": Phase="Running", Reason="", readiness=true. Elapsed: 8.020414071s + Apr 5 18:52:25.955: INFO: Pod "webserver-deployment-7f5969cbc7-wdhjw" satisfied condition "running" + Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk": Phase="Running", Reason="", readiness=true. Elapsed: 8.020698477s + Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk" satisfied condition "running" + Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm": Phase="Running", Reason="", readiness=true. Elapsed: 8.022252669s + Apr 5 18:52:25.956: INFO: Pod "webserver-deployment-7f5969cbc7-sz7wm" satisfied condition "running" + Apr 5 18:52:25.976: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 8.041068092s + Apr 5 18:52:27.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010711052s + Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 10.011620922s + Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009895667s + Apr 5 18:52:27.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 10.011020851s + Apr 5 18:52:27.944: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009516463s + Apr 5 18:52:27.979: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 10.043390439s + Apr 5 18:52:29.942: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009999826s + Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009376718s + Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011445978s + Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011506608s + Apr 5 18:52:29.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009311858s + Apr 5 18:52:29.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 12.041631746s + Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011320635s + Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009801285s + Apr 5 18:52:31.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009263577s + Apr 5 18:52:31.944: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011339547s + Apr 5 18:52:31.944: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 14.012116123s + Apr 5 18:52:31.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Pending", Reason="", readiness=false. Elapsed: 14.041705835s + Apr 5 18:52:33.941: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009095226s + Apr 5 18:52:33.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Pending", Reason="", readiness=false. Elapsed: 16.00991946s + Apr 5 18:52:33.942: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Pending", Reason="", readiness=false. Elapsed: 16.008726613s + Apr 5 18:52:33.946: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Pending", Reason="", readiness=false. Elapsed: 16.012245126s + Apr 5 18:52:33.947: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Pending", Reason="", readiness=false. Elapsed: 16.015467546s + Apr 5 18:52:33.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z": Phase="Running", Reason="", readiness=true. Elapsed: 16.041880182s + Apr 5 18:52:33.977: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z" satisfied condition "running" + Apr 5 18:52:35.942: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd": Phase="Running", Reason="", readiness=true. Elapsed: 18.010680261s + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd" satisfied condition "running" + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t": Phase="Running", Reason="", readiness=true. Elapsed: 18.008651057s + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t" satisfied condition "running" + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9": Phase="Running", Reason="", readiness=true. Elapsed: 18.009659723s + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9" satisfied condition "running" + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx": Phase="Running", Reason="", readiness=true. Elapsed: 18.010819269s + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx" satisfied condition "running" + Apr 5 18:52:35.943: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k": Phase="Running", Reason="", readiness=true. Elapsed: 18.01183555s + Apr 5 18:52:35.944: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k" satisfied condition "running" + Apr 5 18:52:35.944: INFO: Waiting for deployment "webserver-deployment" to complete + Apr 5 18:52:35.950: INFO: Updating deployment "webserver-deployment" with a non-existent image + Apr 5 18:52:35.960: INFO: Updating deployment webserver-deployment + Apr 5 18:52:35.960: INFO: Waiting for observed generation 2 + Apr 5 18:52:38.394: INFO: Waiting for the first rollout's replicaset to have .status.availableReplicas = 8 + Apr 5 18:52:38.437: INFO: Waiting for the first rollout's replicaset to have .spec.replicas = 8 + Apr 5 18:52:38.545: INFO: Waiting for the first rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas + Apr 5 18:52:38.766: INFO: Verifying that the second rollout's replicaset has .status.availableReplicas = 0 + Apr 5 18:52:38.766: INFO: Waiting for the second rollout's replicaset to have .spec.replicas = 5 + Apr 5 18:52:38.770: INFO: Waiting for the second rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas + Apr 5 18:52:38.776: INFO: Verifying that deployment "webserver-deployment" has minimum required number of available replicas + Apr 5 18:52:38.777: INFO: Scaling up the deployment "webserver-deployment" from 10 to 30 + Apr 5 18:52:38.802: INFO: Updating deployment webserver-deployment + Apr 5 18:52:38.803: INFO: Waiting for the replicasets of deployment "webserver-deployment" to have desired number of replicas + Apr 5 18:52:38.824: INFO: Verifying that first rollout's replicaset has .spec.replicas = 20 + Apr 5 18:52:41.522: INFO: Verifying that second rollout's replicaset has .spec.replicas = 13 + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 18:52:42.418: INFO: Deployment "webserver-deployment": + &Deployment{ObjectMeta:{webserver-deployment deployment-482 12c052f1-b251-4ab2-aa37-c9fbb1301134 83244 3 2023-04-05 18:52:15 +0000 UTC map[name:httpd] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 18:52:38 +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 2023-04-05 18:52:38 +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 0xc004b678d8 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:2023-04-05 18:52:38 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "webserver-deployment-d9f79cb5" is progressing.,LastUpdateTime:2023-04-05 18:52:38 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,},},ReadyReplicas:8,CollisionCount:nil,},} + + Apr 5 18:52:42.425: INFO: New ReplicaSet "webserver-deployment-d9f79cb5" of Deployment "webserver-deployment": + &ReplicaSet{ObjectMeta:{webserver-deployment-d9f79cb5 deployment-482 8abe710a-4d96-4482-be56-b16b81affd5c 83235 3 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment webserver-deployment 12c052f1-b251-4ab2-aa37-c9fbb1301134 0xc004b67dd7 0xc004b67dd8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 18:52:38 +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\":\"12c052f1-b251-4ab2-aa37-c9fbb1301134\"}":{}}},"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 2023-04-05 18:52:38 +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: d9f79cb5,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] 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 0xc004b67e78 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{},},} + Apr 5 18:52:42.425: INFO: All old ReplicaSets of Deployment "webserver-deployment": + Apr 5 18:52:42.425: INFO: &ReplicaSet{ObjectMeta:{webserver-deployment-7f5969cbc7 deployment-482 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 83234 3 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment webserver-deployment 12c052f1-b251-4ab2-aa37-c9fbb1301134 0xc004b67ce7 0xc004b67ce8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 18:52:38 +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\":\"12c052f1-b251-4ab2-aa37-c9fbb1301134\"}":{}}},"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 2023-04-05 18:52:38 +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: 7f5969cbc7,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc004b67d78 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{},},} + Apr 5 18:52:42.436: INFO: Pod "webserver-deployment-7f5969cbc7-5dvhx" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-5dvhx webserver-deployment-7f5969cbc7- deployment-482 c56fd9f5-1c48-4cfa-af32-bf1a32780691 83246 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8377 0xc004fc8378}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-vxpcv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-vxpcv,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.436: INFO: Pod "webserver-deployment-7f5969cbc7-6dq9v" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-6dq9v webserver-deployment-7f5969cbc7- deployment-482 675fbaf1-f91f-4166-9076-2c130e8d1638 83276 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8537 0xc004fc8538}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-7pvkf,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-7pvkf,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.437: INFO: Pod "webserver-deployment-7f5969cbc7-6dtp2" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-6dtp2 webserver-deployment-7f5969cbc7- deployment-482 8903d63a-a0a9-48cd-862d-7d7f8c3ce7c6 83236 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc86f7 0xc004fc86f8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-p966x,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-p966x,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.437: INFO: Pod "webserver-deployment-7f5969cbc7-7fz8p" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-7fz8p webserver-deployment-7f5969cbc7- deployment-482 35563173-8d9d-4672-975c-0de414cb0061 83314 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc88b7 0xc004fc88b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:41 +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-zvdrn,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zvdrn,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.438: INFO: Pod "webserver-deployment-7f5969cbc7-88bxd" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-88bxd webserver-deployment-7f5969cbc7- deployment-482 6d0d4a84-61f5-437b-9c39-16d302c4e2bc 83062 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8a77 0xc004fc8a78}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.200\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-c5qnp,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-c5qnp,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.200,StartTime:2023-04-05 18:52:16 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://1cfac5996bda467d939eab5faad9cea1e9d09d7338b46c0764b3e1c919d8fbc3,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.200,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.438: INFO: Pod "webserver-deployment-7f5969cbc7-8dt2k" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-8dt2k webserver-deployment-7f5969cbc7- deployment-482 313eaa06-10f7-46bc-affd-2c4ee5671987 83065 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8c57 0xc004fc8c58}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.113\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-mvwk8,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-mvwk8,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.113,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://bb7280938312121503df3829f06c8a2bc4e6d801f6b7c6722e05419cecba7375,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.113,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.439: INFO: Pod "webserver-deployment-7f5969cbc7-brfc4" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-brfc4 webserver-deployment-7f5969cbc7- deployment-482 dd8ce591-950a-418b-a69f-6ceb523cee16 83238 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8e37 0xc004fc8e38}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-dmxdr,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-dmxdr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.439: INFO: Pod "webserver-deployment-7f5969cbc7-hdqsx" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hdqsx webserver-deployment-7f5969cbc7- deployment-482 0f24c69b-d22c-4eb9-9091-15839e89e250 83068 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc8ff7 0xc004fc8ff8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.2.137\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-f5vjc,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-f5vjc,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.137,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://792ac3acf67eb457fc1c0f142dfb1fec0beca2adee9f726e54deffbf5a4995db,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.137,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hfj8z" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hfj8z webserver-deployment-7f5969cbc7- deployment-482 6f70e6db-f19f-4108-8ee4-3e82d63a5729 83037 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc91d7 0xc004fc91d8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:33 +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\":\"192.168.2.115\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-4ssmw,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-4ssmw,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:33 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:33 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:16 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.115,StartTime:2023-04-05 18:52:16 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://7f079ad4fa2eefbea60f3b6c4d860c0b228efb0daedfaf3998600b30b08cac97,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.115,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hp5sk" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hp5sk webserver-deployment-7f5969cbc7- deployment-482 41c0c7e3-d51b-47cc-adda-078160780604 82939 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc93b7 0xc004fc93b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.3.44\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-fkdm7,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-fkdm7,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.44,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://4558fd841fb3a7e1585e1d72ce9c2c9b6c362dd3664261fdfe1c54216a127a37,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.44,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.445: INFO: Pod "webserver-deployment-7f5969cbc7-hzsl6" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-hzsl6 webserver-deployment-7f5969cbc7- deployment-482 22e6ba39-6a83-4b7a-ae77-3fc15652c646 83263 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9597 0xc004fc9598}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-hk262,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hk262,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-j49mx" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-j49mx webserver-deployment-7f5969cbc7- deployment-482 a8a06295-9f1c-472a-8ee0-90494ec005ac 83229 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9757 0xc004fc9758}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-cnlnv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-cnlnv,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-j8np9" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-j8np9 webserver-deployment-7f5969cbc7- deployment-482 2890b7fb-d1fb-45dc-917f-6e7ef32b48bb 83059 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9917 0xc004fc9918}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.1.92\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-dlx5b,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-dlx5b,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.92,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:34 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://ef76b89f6d736cef17114d8e51510f8fb194e46aa2e2cc5cc2733cb1e4b7ff03,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.92,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.446: INFO: Pod "webserver-deployment-7f5969cbc7-mbqj5" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-mbqj5 webserver-deployment-7f5969cbc7- deployment-482 8a79f0e6-ee45-449c-a4e8-6095ff24b30d 83247 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9af7 0xc004fc9af8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-zzlcg,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zzlcg,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.447: INFO: Pod "webserver-deployment-7f5969cbc7-mw89k" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-mw89k webserver-deployment-7f5969cbc7- deployment-482 21e329e5-f691-4ad8-9c34-5ecce7544653 83279 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9cb7 0xc004fc9cb8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:39 +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-879wt,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-879wt,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.447: INFO: Pod "webserver-deployment-7f5969cbc7-nm5n4" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-nm5n4 webserver-deployment-7f5969cbc7- deployment-482 d66e0f3d-0b35-4f3f-ba0c-73010b4ed380 83232 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc004fc9e77 0xc004fc9e78}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-psl66,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-psl66,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-pjppc" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-pjppc webserver-deployment-7f5969cbc7- deployment-482 8ab41a36-3f76-49b2-bf2e-898231008fdc 83220 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a2037 0xc0050a2038}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-j82g7,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-j82g7,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-v26mb" is not available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-v26mb webserver-deployment-7f5969cbc7- deployment-482 6addd920-f337-43c3-b472-b05d762d0091 83195 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a21f7 0xc0050a21f8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52:38 +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-lwwcq,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-lwwcq,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.448: INFO: Pod "webserver-deployment-7f5969cbc7-v5f8t" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-v5f8t webserver-deployment-7f5969cbc7- deployment-482 2e122f03-4e09-4430-a098-82960fe077e6 83071 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a23b7 0xc0050a23b8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.2.146\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-cv62g,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-cv62g,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.146,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://9aa3e8d3949bc303baa2f7f3ec37586ec61169da654f3b9ce72a874438b15a92,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.2.146,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.449: INFO: Pod "webserver-deployment-7f5969cbc7-zrl5w" is available: + &Pod{ObjectMeta:{webserver-deployment-7f5969cbc7-zrl5w webserver-deployment-7f5969cbc7- deployment-482 2d0ed340-c122-4191-be43-e0f20a25c0d9 82945 0 2023-04-05 18:52:15 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet webserver-deployment-7f5969cbc7 789cf6e0-99ba-4e5c-96b6-e5fa3214c391 0xc0050a2597 0xc0050a2598}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:15 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"789cf6e0-99ba-4e5c-96b6-e5fa3214c391\"}":{}}},"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 2023-04-05 18:52: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\":\"192.168.3.81\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-t4zgx,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-t4zgx,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:15 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.81,StartTime:2023-04-05 18:52:15 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 18:52:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://a3278c3a4cfe7f2e91f245aa75910dd8cf7db47460a3394ba366d3bef0478d97,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.81,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.449: INFO: Pod "webserver-deployment-d9f79cb5-4gdhp" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-4gdhp webserver-deployment-d9f79cb5- deployment-482 f15bd8e8-2e64-4bb9-aa05-a59d69861c1d 83307 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2777 0xc0050a2778}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:40 +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\":\"192.168.1.232\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-frgrn,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-frgrn,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.232,StartTime:2023-04-05 18:52:36 +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:192.168.1.232,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-6277b" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-6277b webserver-deployment-d9f79cb5- deployment-482 c2323935-728b-484c-af72-8be38876e5e3 83254 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a296f 0xc0050a2980}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-zpggg,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zpggg,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-8z2wr" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-8z2wr webserver-deployment-d9f79cb5- deployment-482 ca103537-27ad-4303-ad30-8cdced4d8c34 83323 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2b3f 0xc0050a2b50}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:41 +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-qw5pb,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-qw5pb,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.450: INFO: Pod "webserver-deployment-d9f79cb5-992jh" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-992jh webserver-deployment-d9f79cb5- deployment-482 b7933851-4b00-4e34-8c49-13b87a7f71b4 83105 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2d27 0xc0050a2d28}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-txngr,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-txngr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:35 +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:2023-04-05 18:52:35 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:35 +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{},},} + Apr 5 18:52:42.451: INFO: Pod "webserver-deployment-d9f79cb5-f25bk" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-f25bk webserver-deployment-d9f79cb5- deployment-482 c5839fab-bbde-4893-a281-c849db19da68 83248 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a2f07 0xc0050a2f08}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-nhxqr,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-nhxqr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-ffcbl" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-ffcbl webserver-deployment-d9f79cb5- deployment-482 65f89ad4-f1de-4935-b17a-df0cca009354 83215 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a30e7 0xc0050a30e8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-6f2bb,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-6f2bb,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-hnlwb" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-hnlwb webserver-deployment-d9f79cb5- deployment-482 cd30b4ab-8270-41e5-bfaa-441e16f09c02 83204 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a32c7 0xc0050a32c8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-fnh7m,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-fnh7m,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.452: INFO: Pod "webserver-deployment-d9f79cb5-jwhb8" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-jwhb8 webserver-deployment-d9f79cb5- deployment-482 d4012282-105d-4c5b-abb1-de24f15b5f75 83135 0 2023-04-05 18:52:36 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a34a7 0xc0050a34a8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:36 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-8vnnh,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-8vnnh,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 18:52:36 +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{},},} + Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-n7p9r" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-n7p9r webserver-deployment-d9f79cb5- deployment-482 fe58991c-af05-4d39-8cd0-667c89a29333 83241 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3687 0xc0050a3688}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-8m88r,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-8m88r,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-r2xtc" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-r2xtc webserver-deployment-d9f79cb5- deployment-482 a9c14bce-eb41-4c28-afb3-8fd9ac45ddae 83251 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a384f 0xc0050a3860}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:38 +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-mbr46,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-mbr46,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.453: INFO: Pod "webserver-deployment-d9f79cb5-rcnp8" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-rcnp8 webserver-deployment-d9f79cb5- deployment-482 f6afa036-7897-4cce-98cc-ef9b547ebadd 83140 0 2023-04-05 18:52:36 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3a37 0xc0050a3a38}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:36 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:36 +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-pjq89,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-pjq89,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:,StartTime:2023-04-05 18:52:36 +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{},},} + Apr 5 18:52:42.454: INFO: Pod "webserver-deployment-d9f79cb5-tk75j" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-tk75j webserver-deployment-d9f79cb5- deployment-482 41e154bb-faae-4b2e-a44e-cf3e2d1399ce 83277 0 2023-04-05 18:52:38 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3bff 0xc0050a3c10}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:38 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:39 +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-hc4r5,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hc4r5,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +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:2023-04-05 18:52:38 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:,StartTime:2023-04-05 18:52:38 +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{},},} + Apr 5 18:52:42.457: INFO: Pod "webserver-deployment-d9f79cb5-vvphw" is not available: + &Pod{ObjectMeta:{webserver-deployment-d9f79cb5-vvphw webserver-deployment-d9f79cb5- deployment-482 3c781f1c-97d7-4bcb-8985-0a9590ac19cf 83325 0 2023-04-05 18:52:35 +0000 UTC map[name:httpd pod-template-hash:d9f79cb5] map[] [{apps/v1 ReplicaSet webserver-deployment-d9f79cb5 8abe710a-4d96-4482-be56-b16b81affd5c 0xc0050a3de7 0xc0050a3de8}] [] [{kube-controller-manager Update v1 2023-04-05 18:52:35 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8abe710a-4d96-4482-be56-b16b81affd5c\"}":{}}},"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 2023-04-05 18:52:41 +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\":\"192.168.2.20\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-jgqwn,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{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-jgqwn,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:ttneyla26-md-0-8474989c68-jf7bt,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 18:52:36 +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:2023-04-05 18:52:36 +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:2023-04-05 18:52:35 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.191,PodIP:192.168.2.20,StartTime:2023-04-05 18:52:36 +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:192.168.2.20,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 18:52:42.457: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-482" for this suite. 04/05/23 18:52:42.466 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/apimachinery/garbage_collector.go:550 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:52:43.193 +Apr 5 18:52:43.194: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 18:52:43.196 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:43.785 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:43.791 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/apimachinery/garbage_collector.go:550 +STEP: create the deployment 04/05/23 18:52:43.804 +STEP: Wait for the Deployment to create new ReplicaSet 04/05/23 18:52:43.823 +STEP: delete the deployment 04/05/23 18:52:43.988 +STEP: wait for deployment deletion to see if the garbage collector mistakenly deletes the rs 04/05/23 18:52:44.007 +STEP: Gathering metrics 04/05/23 18:52:44.589 +Apr 5 18:52:44.640: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 18:52:44.647: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 6.326914ms +Apr 5 18:52:44.647: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 18:52:44.647: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 18:52:44.791: 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/node/init/init.go:32 +Apr 5 18:52:44.792: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-2000" for this suite. 04/05/23 18:52:44.8 +------------------------------ +• [1.616 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/apimachinery/garbage_collector.go:550 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:52:43.193 + Apr 5 18:52:43.194: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 18:52:43.196 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:43.785 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:43.791 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/apimachinery/garbage_collector.go:550 + STEP: create the deployment 04/05/23 18:52:43.804 + STEP: Wait for the Deployment to create new ReplicaSet 04/05/23 18:52:43.823 + STEP: delete the deployment 04/05/23 18:52:43.988 + STEP: wait for deployment deletion to see if the garbage collector mistakenly deletes the rs 04/05/23 18:52:44.007 + STEP: Gathering metrics 04/05/23 18:52:44.589 + Apr 5 18:52:44.640: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 18:52:44.647: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 6.326914ms + Apr 5 18:52:44.647: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 18:52:44.647: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 18:52:44.791: 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/node/init/init.go:32 + Apr 5 18:52:44.792: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-2000" for this suite. 04/05/23 18:52:44.8 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:109 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:52:44.81 +Apr 5 18:52:44.810: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 18:52:44.811 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:44.826 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:44.829 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:109 +STEP: Creating configMap with name configmap-test-volume-map-6035fe2c-447c-4704-a3cb-d03639fae2b8 04/05/23 18:52:44.833 +STEP: Creating a pod to test consume configMaps 04/05/23 18:52:44.838 +Apr 5 18:52:44.852: INFO: Waiting up to 5m0s for pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375" in namespace "configmap-6965" to be "Succeeded or Failed" +Apr 5 18:52:44.858: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 4.626691ms +Apr 5 18:52:46.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009045104s +Apr 5 18:52:48.899: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 4.045304621s +Apr 5 18:52:50.907: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 6.053583337s +Apr 5 18:52:52.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009660863s +Apr 5 18:52:54.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008968074s +Apr 5 18:52:56.865: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011572185s +Apr 5 18:52:58.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009032306s +Apr 5 18:53:00.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009546044s +Apr 5 18:53:02.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 18.010227991s +Apr 5 18:53:04.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 20.010203833s +Apr 5 18:53:06.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 22.010549396s +Apr 5 18:53:08.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 24.010369164s +Apr 5 18:53:10.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 26.009415452s +Apr 5 18:53:12.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 28.010030498s +Apr 5 18:53:14.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 30.009499786s +Apr 5 18:53:16.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 32.010675599s +Apr 5 18:53:18.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Succeeded", Reason="", readiness=false. Elapsed: 34.008906138s +STEP: Saw pod success 04/05/23 18:53:18.862 +Apr 5 18:53:18.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375" satisfied condition "Succeeded or Failed" +Apr 5 18:53:18.866: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 container agnhost-container: +STEP: delete the pod 04/05/23 18:53:18.881 +Apr 5 18:53:18.893: INFO: Waiting for pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 to disappear +Apr 5 18:53:18.896: INFO: Pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 18:53:18.897: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-6965" for this suite. 04/05/23 18:53:18.903 +------------------------------ +• [SLOW TEST] [34.100 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:109 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:52:44.81 + Apr 5 18:52:44.810: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 18:52:44.811 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:52:44.826 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:52:44.829 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:109 + STEP: Creating configMap with name configmap-test-volume-map-6035fe2c-447c-4704-a3cb-d03639fae2b8 04/05/23 18:52:44.833 + STEP: Creating a pod to test consume configMaps 04/05/23 18:52:44.838 + Apr 5 18:52:44.852: INFO: Waiting up to 5m0s for pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375" in namespace "configmap-6965" to be "Succeeded or Failed" + Apr 5 18:52:44.858: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 4.626691ms + Apr 5 18:52:46.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009045104s + Apr 5 18:52:48.899: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 4.045304621s + Apr 5 18:52:50.907: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 6.053583337s + Apr 5 18:52:52.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009660863s + Apr 5 18:52:54.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008968074s + Apr 5 18:52:56.865: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 12.011572185s + Apr 5 18:52:58.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 14.009032306s + Apr 5 18:53:00.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009546044s + Apr 5 18:53:02.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 18.010227991s + Apr 5 18:53:04.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 20.010203833s + Apr 5 18:53:06.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 22.010549396s + Apr 5 18:53:08.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 24.010369164s + Apr 5 18:53:10.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 26.009415452s + Apr 5 18:53:12.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 28.010030498s + Apr 5 18:53:14.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 30.009499786s + Apr 5 18:53:16.864: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Pending", Reason="", readiness=false. Elapsed: 32.010675599s + Apr 5 18:53:18.862: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375": Phase="Succeeded", Reason="", readiness=false. Elapsed: 34.008906138s + STEP: Saw pod success 04/05/23 18:53:18.862 + Apr 5 18:53:18.863: INFO: Pod "pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375" satisfied condition "Succeeded or Failed" + Apr 5 18:53:18.866: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 container agnhost-container: + STEP: delete the pod 04/05/23 18:53:18.881 + Apr 5 18:53:18.893: INFO: Waiting for pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 to disappear + Apr 5 18:53:18.896: INFO: Pod pod-configmaps-663163ad-e391-42c7-b1b8-7272d5006375 no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 18:53:18.897: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-6965" for this suite. 04/05/23 18:53:18.903 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2213 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:53:18.912 +Apr 5 18:53:18.913: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 18:53:18.914 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:53:18.93 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:53:18.933 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2213 +STEP: creating service in namespace services-7249 04/05/23 18:53:18.937 +STEP: creating service affinity-clusterip-transition in namespace services-7249 04/05/23 18:53:18.938 +STEP: creating replication controller affinity-clusterip-transition in namespace services-7249 04/05/23 18:53:18.957 +I0405 18:53:18.966533 19 runners.go:193] Created replication controller with name: affinity-clusterip-transition, namespace: services-7249, replica count: 3 +I0405 18:53:22.017618 19 runners.go:193] affinity-clusterip-transition Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 18:53:25.018760 19 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 +Apr 5 18:53:25.026: INFO: Creating new exec pod +Apr 5 18:53:25.034: INFO: Waiting up to 5m0s for pod "execpod-affinity4zlh4" in namespace "services-7249" to be "running" +Apr 5 18:53:25.037: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.98011ms +Apr 5 18:53:27.043: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008950214s +Apr 5 18:53:29.043: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008854688s +Apr 5 18:53:31.042: INFO: Pod "execpod-affinity4zlh4": Phase="Running", Reason="", readiness=true. Elapsed: 6.008040099s +Apr 5 18:53:31.042: INFO: Pod "execpod-affinity4zlh4" satisfied condition "running" +Apr 5 18:53:32.042: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c nc -v -z -w 2 affinity-clusterip-transition 80' +Apr 5 18:53:32.248: INFO: stderr: "+ nc -v -z -w 2 affinity-clusterip-transition 80\nConnection to affinity-clusterip-transition 80 port [tcp/http] succeeded!\n" +Apr 5 18:53:32.248: INFO: stdout: "" +Apr 5 18:53:32.249: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c nc -v -z -w 2 10.142.241.22 80' +Apr 5 18:53:32.418: INFO: stderr: "+ nc -v -z -w 2 10.142.241.22 80\nConnection to 10.142.241.22 80 port [tcp/http] succeeded!\n" +Apr 5 18:53:32.418: INFO: stdout: "" +Apr 5 18:53:32.429: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.142.241.22:80/ ; done' +Apr 5 18:53:32.741: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n" +Apr 5 18:53:32.741: INFO: stdout: "\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94" +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 +Apr 5 18:53:32.751: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.142.241.22:80/ ; done' +Apr 5 18:53:33.050: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n" +Apr 5 18:53:33.050: INFO: stdout: "\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x" +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x +Apr 5 18:53:33.050: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-clusterip-transition in namespace services-7249, will wait for the garbage collector to delete the pods 04/05/23 18:53:33.067 +Apr 5 18:53:33.129: INFO: Deleting ReplicationController affinity-clusterip-transition took: 7.748329ms +Apr 5 18:53:33.230: INFO: Terminating ReplicationController affinity-clusterip-transition pods took: 100.815975ms +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 18:53:35.258: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-7249" for this suite. 04/05/23 18:53:35.264 +------------------------------ +• [SLOW TEST] [16.359 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/network/service.go:2213 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:53:18.912 + Apr 5 18:53:18.913: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 18:53:18.914 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:53:18.93 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:53:18.933 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2213 + STEP: creating service in namespace services-7249 04/05/23 18:53:18.937 + STEP: creating service affinity-clusterip-transition in namespace services-7249 04/05/23 18:53:18.938 + STEP: creating replication controller affinity-clusterip-transition in namespace services-7249 04/05/23 18:53:18.957 + I0405 18:53:18.966533 19 runners.go:193] Created replication controller with name: affinity-clusterip-transition, namespace: services-7249, replica count: 3 + I0405 18:53:22.017618 19 runners.go:193] affinity-clusterip-transition Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 18:53:25.018760 19 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 + Apr 5 18:53:25.026: INFO: Creating new exec pod + Apr 5 18:53:25.034: INFO: Waiting up to 5m0s for pod "execpod-affinity4zlh4" in namespace "services-7249" to be "running" + Apr 5 18:53:25.037: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.98011ms + Apr 5 18:53:27.043: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008950214s + Apr 5 18:53:29.043: INFO: Pod "execpod-affinity4zlh4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008854688s + Apr 5 18:53:31.042: INFO: Pod "execpod-affinity4zlh4": Phase="Running", Reason="", readiness=true. Elapsed: 6.008040099s + Apr 5 18:53:31.042: INFO: Pod "execpod-affinity4zlh4" satisfied condition "running" + Apr 5 18:53:32.042: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c nc -v -z -w 2 affinity-clusterip-transition 80' + Apr 5 18:53:32.248: INFO: stderr: "+ nc -v -z -w 2 affinity-clusterip-transition 80\nConnection to affinity-clusterip-transition 80 port [tcp/http] succeeded!\n" + Apr 5 18:53:32.248: INFO: stdout: "" + Apr 5 18:53:32.249: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c nc -v -z -w 2 10.142.241.22 80' + Apr 5 18:53:32.418: INFO: stderr: "+ nc -v -z -w 2 10.142.241.22 80\nConnection to 10.142.241.22 80 port [tcp/http] succeeded!\n" + Apr 5 18:53:32.418: INFO: stdout: "" + Apr 5 18:53:32.429: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.142.241.22:80/ ; done' + Apr 5 18:53:32.741: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n" + Apr 5 18:53:32.741: INFO: stdout: "\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-7lw62\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-7xz94\naffinity-clusterip-transition-7xz94" + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7lw62 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.741: INFO: Received response from host: affinity-clusterip-transition-7xz94 + Apr 5 18:53:32.751: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-7249 exec execpod-affinity4zlh4 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.142.241.22:80/ ; done' + Apr 5 18:53:33.050: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.142.241.22:80/\n" + Apr 5 18:53:33.050: INFO: stdout: "\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x\naffinity-clusterip-transition-j6z8x" + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Received response from host: affinity-clusterip-transition-j6z8x + Apr 5 18:53:33.050: INFO: Cleaning up the exec pod + STEP: deleting ReplicationController affinity-clusterip-transition in namespace services-7249, will wait for the garbage collector to delete the pods 04/05/23 18:53:33.067 + Apr 5 18:53:33.129: INFO: Deleting ReplicationController affinity-clusterip-transition took: 7.748329ms + Apr 5 18:53:33.230: INFO: Terminating ReplicationController affinity-clusterip-transition pods took: 100.815975ms + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 18:53:35.258: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-7249" for this suite. 04/05/23 18:53:35.264 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/storage/subpath.go:80 +[BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:53:35.275 +Apr 5 18:53:35.275: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename subpath 04/05/23 18:53:35.276 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:53:35.293 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:53:35.295 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data 04/05/23 18:53:35.298 +[It] should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/storage/subpath.go:80 +STEP: Creating pod pod-subpath-test-configmap-57jf 04/05/23 18:53:35.308 +STEP: Creating a pod to test atomic-volume-subpath 04/05/23 18:53:35.308 +Apr 5 18:53:35.316: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-57jf" in namespace "subpath-1297" to be "Succeeded or Failed" +Apr 5 18:53:35.319: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.132342ms +Apr 5 18:53:37.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00907221s +Apr 5 18:53:39.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009064844s +Apr 5 18:53:41.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 6.009342559s +Apr 5 18:53:43.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 8.00738177s +Apr 5 18:53:45.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 10.008151767s +Apr 5 18:53:47.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 12.00742803s +Apr 5 18:53:49.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 14.0091683s +Apr 5 18:53:51.329: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 16.013397416s +Apr 5 18:53:53.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 18.00721187s +Apr 5 18:53:55.326: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 20.010005871s +Apr 5 18:53:57.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 22.008742892s +Apr 5 18:53:59.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 24.007495236s +Apr 5 18:54:01.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=false. Elapsed: 26.007771455s +Apr 5 18:54:03.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.008066443s +STEP: Saw pod success 04/05/23 18:54:03.324 +Apr 5 18:54:03.324: INFO: Pod "pod-subpath-test-configmap-57jf" satisfied condition "Succeeded or Failed" +Apr 5 18:54:03.327: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-configmap-57jf container test-container-subpath-configmap-57jf: +STEP: delete the pod 04/05/23 18:54:03.336 +Apr 5 18:54:03.350: INFO: Waiting for pod pod-subpath-test-configmap-57jf to disappear +Apr 5 18:54:03.353: INFO: Pod pod-subpath-test-configmap-57jf no longer exists +STEP: Deleting pod pod-subpath-test-configmap-57jf 04/05/23 18:54:03.353 +Apr 5 18:54:03.353: INFO: Deleting pod "pod-subpath-test-configmap-57jf" in namespace "subpath-1297" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 +Apr 5 18:54:03.357: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 +STEP: Destroying namespace "subpath-1297" for this suite. 04/05/23 18:54:03.362 +------------------------------ +• [SLOW TEST] [28.094 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/storage/subpath.go:80 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:53:35.275 + Apr 5 18:53:35.275: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename subpath 04/05/23 18:53:35.276 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:53:35.293 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:53:35.295 + [BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 + STEP: Setting up data 04/05/23 18:53:35.298 + [It] should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/storage/subpath.go:80 + STEP: Creating pod pod-subpath-test-configmap-57jf 04/05/23 18:53:35.308 + STEP: Creating a pod to test atomic-volume-subpath 04/05/23 18:53:35.308 + Apr 5 18:53:35.316: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-57jf" in namespace "subpath-1297" to be "Succeeded or Failed" + Apr 5 18:53:35.319: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.132342ms + Apr 5 18:53:37.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00907221s + Apr 5 18:53:39.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009064844s + Apr 5 18:53:41.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 6.009342559s + Apr 5 18:53:43.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 8.00738177s + Apr 5 18:53:45.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 10.008151767s + Apr 5 18:53:47.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 12.00742803s + Apr 5 18:53:49.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 14.0091683s + Apr 5 18:53:51.329: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 16.013397416s + Apr 5 18:53:53.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 18.00721187s + Apr 5 18:53:55.326: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 20.010005871s + Apr 5 18:53:57.325: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 22.008742892s + Apr 5 18:53:59.323: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=true. Elapsed: 24.007495236s + Apr 5 18:54:01.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Running", Reason="", readiness=false. Elapsed: 26.007771455s + Apr 5 18:54:03.324: INFO: Pod "pod-subpath-test-configmap-57jf": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.008066443s + STEP: Saw pod success 04/05/23 18:54:03.324 + Apr 5 18:54:03.324: INFO: Pod "pod-subpath-test-configmap-57jf" satisfied condition "Succeeded or Failed" + Apr 5 18:54:03.327: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-configmap-57jf container test-container-subpath-configmap-57jf: + STEP: delete the pod 04/05/23 18:54:03.336 + Apr 5 18:54:03.350: INFO: Waiting for pod pod-subpath-test-configmap-57jf to disappear + Apr 5 18:54:03.353: INFO: Pod pod-subpath-test-configmap-57jf no longer exists + STEP: Deleting pod pod-subpath-test-configmap-57jf 04/05/23 18:54:03.353 + Apr 5 18:54:03.353: INFO: Deleting pod "pod-subpath-test-configmap-57jf" in namespace "subpath-1297" + [AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 + Apr 5 18:54:03.357: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 + STEP: Destroying namespace "subpath-1297" for this suite. 04/05/23 18:54:03.362 + << End Captured GinkgoWriter Output +------------------------------ +[sig-node] Pods + should delete a collection of pods [Conformance] + test/e2e/common/node/pods.go:845 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:54:03.372 +Apr 5 18:54:03.372: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 18:54:03.373 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:03.389 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:03.392 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should delete a collection of pods [Conformance] + test/e2e/common/node/pods.go:845 +STEP: Create set of pods 04/05/23 18:54:03.395 +Apr 5 18:54:03.403: INFO: created test-pod-1 +Apr 5 18:54:03.409: INFO: created test-pod-2 +Apr 5 18:54:03.415: INFO: created test-pod-3 +STEP: waiting for all 3 pods to be running 04/05/23 18:54:03.415 +Apr 5 18:54:03.415: INFO: Waiting up to 5m0s for all pods (need at least 3) in namespace 'pods-2133' to be running and ready +Apr 5 18:54:03.425: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:03.425: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:03.425: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:03.425: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (0 seconds elapsed) +Apr 5 18:54:03.426: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. +Apr 5 18:54:03.426: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 18:54:03.426: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:03.426: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:03.426: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:03.427: INFO: +Apr 5 18:54:05.436: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:05.436: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:05.436: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:05.436: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (2 seconds elapsed) +Apr 5 18:54:05.436: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. +Apr 5 18:54:05.436: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 18:54:05.436: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:05.436: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:05.436: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:05.436: INFO: +Apr 5 18:54:07.451: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:07.452: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:07.452: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:07.452: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (4 seconds elapsed) +Apr 5 18:54:07.452: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. +Apr 5 18:54:07.452: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 18:54:07.452: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:07.452: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:07.452: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:07.452: INFO: +Apr 5 18:54:09.438: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Apr 5 18:54:09.438: INFO: 2 / 3 pods in namespace 'pods-2133' are running and ready (6 seconds elapsed) +Apr 5 18:54:09.438: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. +Apr 5 18:54:09.438: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 18:54:09.438: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] +Apr 5 18:54:09.438: INFO: +Apr 5 18:54:11.444: INFO: 3 / 3 pods in namespace 'pods-2133' are running and ready (8 seconds elapsed) +Apr 5 18:54:11.444: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. +STEP: waiting for all pods to be deleted 04/05/23 18:54:11.467 +Apr 5 18:54:11.470: INFO: Pod quantity 3 is different from expected quantity 0 +Apr 5 18:54:12.475: INFO: Pod quantity 1 is different from expected quantity 0 +Apr 5 18:54:13.476: INFO: Pod quantity 1 is different from expected quantity 0 +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 18:54:14.475: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-2133" for this suite. 04/05/23 18:54:14.48 +------------------------------ +• [SLOW TEST] [11.115 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should delete a collection of pods [Conformance] + test/e2e/common/node/pods.go:845 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:54:03.372 + Apr 5 18:54:03.372: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 18:54:03.373 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:03.389 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:03.392 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should delete a collection of pods [Conformance] + test/e2e/common/node/pods.go:845 + STEP: Create set of pods 04/05/23 18:54:03.395 + Apr 5 18:54:03.403: INFO: created test-pod-1 + Apr 5 18:54:03.409: INFO: created test-pod-2 + Apr 5 18:54:03.415: INFO: created test-pod-3 + STEP: waiting for all 3 pods to be running 04/05/23 18:54:03.415 + Apr 5 18:54:03.415: INFO: Waiting up to 5m0s for all pods (need at least 3) in namespace 'pods-2133' to be running and ready + Apr 5 18:54:03.425: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:03.425: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:03.425: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:03.425: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (0 seconds elapsed) + Apr 5 18:54:03.426: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. + Apr 5 18:54:03.426: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 18:54:03.426: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:03.426: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:03.426: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:03.427: INFO: + Apr 5 18:54:05.436: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:05.436: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:05.436: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:05.436: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (2 seconds elapsed) + Apr 5 18:54:05.436: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. + Apr 5 18:54:05.436: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 18:54:05.436: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:05.436: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:05.436: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:05.436: INFO: + Apr 5 18:54:07.451: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:07.452: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:07.452: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:07.452: INFO: 0 / 3 pods in namespace 'pods-2133' are running and ready (4 seconds elapsed) + Apr 5 18:54:07.452: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. + Apr 5 18:54:07.452: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 18:54:07.452: INFO: test-pod-1 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:07.452: INFO: test-pod-2 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:07.452: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:07.452: INFO: + Apr 5 18:54:09.438: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed + Apr 5 18:54:09.438: INFO: 2 / 3 pods in namespace 'pods-2133' are running and ready (6 seconds elapsed) + Apr 5 18:54:09.438: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. + Apr 5 18:54:09.438: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 18:54:09.438: INFO: test-pod-3 ttneyla26-md-0-8474989c68-rj4zb Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 18:54:03 +0000 UTC }] + Apr 5 18:54:09.438: INFO: + Apr 5 18:54:11.444: INFO: 3 / 3 pods in namespace 'pods-2133' are running and ready (8 seconds elapsed) + Apr 5 18:54:11.444: INFO: expected 0 pod replicas in namespace 'pods-2133', 0 are Running and Ready. + STEP: waiting for all pods to be deleted 04/05/23 18:54:11.467 + Apr 5 18:54:11.470: INFO: Pod quantity 3 is different from expected quantity 0 + Apr 5 18:54:12.475: INFO: Pod quantity 1 is different from expected quantity 0 + Apr 5 18:54:13.476: INFO: Pod quantity 1 is different from expected quantity 0 + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 18:54:14.475: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-2133" for this suite. 04/05/23 18:54:14.48 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should not be blocked by dependency circle [Conformance] + test/e2e/apimachinery/garbage_collector.go:849 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:54:14.49 +Apr 5 18:54:14.490: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 18:54:14.491 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:14.508 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:14.512 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should not be blocked by dependency circle [Conformance] + test/e2e/apimachinery/garbage_collector.go:849 +Apr 5 18:54:14.540: INFO: pod1.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod3", UID:"d20a0bba-8b58-43a8-8527-f0624c647f04", Controller:(*bool)(0xc001181bd6), BlockOwnerDeletion:(*bool)(0xc001181bd7)}} +Apr 5 18:54:14.550: INFO: pod2.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod1", UID:"9bd212d3-62a3-484a-af26-04ee20948583", Controller:(*bool)(0xc008e96b76), BlockOwnerDeletion:(*bool)(0xc008e96b77)}} +Apr 5 18:54:14.557: INFO: pod3.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod2", UID:"a93760ce-7eb3-4549-8d7f-46d905fbf653", Controller:(*bool)(0xc008e96dae), BlockOwnerDeletion:(*bool)(0xc008e96daf)}} +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 +Apr 5 18:54:19.572: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-5361" for this suite. 04/05/23 18:54:19.578 +------------------------------ +• [SLOW TEST] [5.094 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should not be blocked by dependency circle [Conformance] + test/e2e/apimachinery/garbage_collector.go:849 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:54:14.49 + Apr 5 18:54:14.490: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 18:54:14.491 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:14.508 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:14.512 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should not be blocked by dependency circle [Conformance] + test/e2e/apimachinery/garbage_collector.go:849 + Apr 5 18:54:14.540: INFO: pod1.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod3", UID:"d20a0bba-8b58-43a8-8527-f0624c647f04", Controller:(*bool)(0xc001181bd6), BlockOwnerDeletion:(*bool)(0xc001181bd7)}} + Apr 5 18:54:14.550: INFO: pod2.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod1", UID:"9bd212d3-62a3-484a-af26-04ee20948583", Controller:(*bool)(0xc008e96b76), BlockOwnerDeletion:(*bool)(0xc008e96b77)}} + Apr 5 18:54:14.557: INFO: pod3.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod2", UID:"a93760ce-7eb3-4549-8d7f-46d905fbf653", Controller:(*bool)(0xc008e96dae), BlockOwnerDeletion:(*bool)(0xc008e96daf)}} + [AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 + Apr 5 18:54:19.572: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-5361" for this suite. 04/05/23 18:54:19.578 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:46 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:54:19.585 +Apr 5 18:54:19.585: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 18:54:19.586 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:19.605 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:19.607 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:46 +STEP: Creating projection with secret that has name projected-secret-test-cc180221-8d5c-470c-8635-c3f2ee62fce0 04/05/23 18:54:19.61 +STEP: Creating a pod to test consume secrets 04/05/23 18:54:19.614 +Apr 5 18:54:19.625: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7" in namespace "projected-692" to be "Succeeded or Failed" +Apr 5 18:54:19.627: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.398873ms +Apr 5 18:54:21.633: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008270755s +Apr 5 18:54:23.632: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00759233s +Apr 5 18:54:25.633: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008115607s +Apr 5 18:54:27.631: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00676001s +STEP: Saw pod success 04/05/23 18:54:27.632 +Apr 5 18:54:27.632: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7" satisfied condition "Succeeded or Failed" +Apr 5 18:54:27.636: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 container projected-secret-volume-test: +STEP: delete the pod 04/05/23 18:54:27.644 +Apr 5 18:54:27.660: INFO: Waiting for pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 to disappear +Apr 5 18:54:27.664: INFO: Pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 18:54:27.665: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-692" for this suite. 04/05/23 18:54:27.672 +------------------------------ +• [SLOW TEST] [8.104 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:46 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:54:19.585 + Apr 5 18:54:19.585: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 18:54:19.586 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:19.605 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:19.607 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:46 + STEP: Creating projection with secret that has name projected-secret-test-cc180221-8d5c-470c-8635-c3f2ee62fce0 04/05/23 18:54:19.61 + STEP: Creating a pod to test consume secrets 04/05/23 18:54:19.614 + Apr 5 18:54:19.625: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7" in namespace "projected-692" to be "Succeeded or Failed" + Apr 5 18:54:19.627: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.398873ms + Apr 5 18:54:21.633: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008270755s + Apr 5 18:54:23.632: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00759233s + Apr 5 18:54:25.633: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008115607s + Apr 5 18:54:27.631: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00676001s + STEP: Saw pod success 04/05/23 18:54:27.632 + Apr 5 18:54:27.632: INFO: Pod "pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7" satisfied condition "Succeeded or Failed" + Apr 5 18:54:27.636: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 container projected-secret-volume-test: + STEP: delete the pod 04/05/23 18:54:27.644 + Apr 5 18:54:27.660: INFO: Waiting for pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 to disappear + Apr 5 18:54:27.664: INFO: Pod pod-projected-secrets-533069d9-f301-471a-b6f3-3367a1747cb7 no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 18:54:27.665: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-692" for this suite. 04/05/23 18:54:27.672 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for the cluster [Conformance] + test/e2e/network/dns.go:50 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:54:27.694 +Apr 5 18:54:27.694: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 18:54:27.695 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:27.713 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:27.715 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide DNS for the cluster [Conformance] + test/e2e/network/dns.go:50 +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 + 04/05/23 18:54:27.719 +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 + 04/05/23 18:54:27.719 +STEP: creating a pod to probe DNS 04/05/23 18:54:27.719 +STEP: submitting the pod to kubernetes 04/05/23 18:54:27.72 +Apr 5 18:54:27.727: INFO: Waiting up to 15m0s for pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd" in namespace "dns-4436" to be "running" +Apr 5 18:54:27.731: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 3.164744ms +Apr 5 18:54:29.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007514363s +Apr 5 18:54:31.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007407791s +Apr 5 18:54:33.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Running", Reason="", readiness=true. Elapsed: 6.007171368s +Apr 5 18:54:33.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd" satisfied condition "running" +STEP: retrieving the pod 04/05/23 18:54:33.735 +STEP: looking for the results for each expected name from probers 04/05/23 18:54:33.739 +Apr 5 18:54:33.757: INFO: DNS probes using dns-4436/dns-test-b560043a-942a-4444-a214-1975101d6bdd succeeded + +STEP: deleting the pod 04/05/23 18:54:33.757 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 18:54:33.772: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-4436" for this suite. 04/05/23 18:54:33.777 +------------------------------ +• [SLOW TEST] [6.089 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for the cluster [Conformance] + test/e2e/network/dns.go:50 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:54:27.694 + Apr 5 18:54:27.694: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 18:54:27.695 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:27.713 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:27.715 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide DNS for the cluster [Conformance] + test/e2e/network/dns.go:50 + 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 + 04/05/23 18:54:27.719 + 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 + 04/05/23 18:54:27.719 + STEP: creating a pod to probe DNS 04/05/23 18:54:27.719 + STEP: submitting the pod to kubernetes 04/05/23 18:54:27.72 + Apr 5 18:54:27.727: INFO: Waiting up to 15m0s for pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd" in namespace "dns-4436" to be "running" + Apr 5 18:54:27.731: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 3.164744ms + Apr 5 18:54:29.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007514363s + Apr 5 18:54:31.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007407791s + Apr 5 18:54:33.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd": Phase="Running", Reason="", readiness=true. Elapsed: 6.007171368s + Apr 5 18:54:33.735: INFO: Pod "dns-test-b560043a-942a-4444-a214-1975101d6bdd" satisfied condition "running" + STEP: retrieving the pod 04/05/23 18:54:33.735 + STEP: looking for the results for each expected name from probers 04/05/23 18:54:33.739 + Apr 5 18:54:33.757: INFO: DNS probes using dns-4436/dns-test-b560043a-942a-4444-a214-1975101d6bdd succeeded + + STEP: deleting the pod 04/05/23 18:54:33.757 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 18:54:33.772: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-4436" for this suite. 04/05/23 18:54:33.777 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:152 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:54:33.786 +Apr 5 18:54:33.786: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 18:54:33.787 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:33.863 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:33.867 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:152 +STEP: Creating pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae in namespace container-probe-9427 04/05/23 18:54:33.87 +Apr 5 18:54:33.880: INFO: Waiting up to 5m0s for pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae" in namespace "container-probe-9427" to be "not pending" +Apr 5 18:54:33.883: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.677766ms +Apr 5 18:54:35.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008375595s +Apr 5 18:54:37.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007872195s +Apr 5 18:54:39.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Running", Reason="", readiness=true. Elapsed: 6.008388881s +Apr 5 18:54:39.889: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae" satisfied condition "not pending" +Apr 5 18:54:39.889: INFO: Started pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae in namespace container-probe-9427 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 18:54:39.889 +Apr 5 18:54:39.892: INFO: Initial restart count of pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae is 0 +STEP: deleting the pod 04/05/23 18:58:40.501 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 18:58:40.516: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-9427" for this suite. 04/05/23 18:58:40.522 +------------------------------ +• [SLOW TEST] [246.743 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/common/node/container_probe.go:152 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:54:33.786 + Apr 5 18:54:33.786: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 18:54:33.787 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:54:33.863 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:54:33.867 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:152 + STEP: Creating pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae in namespace container-probe-9427 04/05/23 18:54:33.87 + Apr 5 18:54:33.880: INFO: Waiting up to 5m0s for pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae" in namespace "container-probe-9427" to be "not pending" + Apr 5 18:54:33.883: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.677766ms + Apr 5 18:54:35.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008375595s + Apr 5 18:54:37.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007872195s + Apr 5 18:54:39.888: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae": Phase="Running", Reason="", readiness=true. Elapsed: 6.008388881s + Apr 5 18:54:39.889: INFO: Pod "busybox-716dff8c-3c81-4255-bc97-ee960a5827ae" satisfied condition "not pending" + Apr 5 18:54:39.889: INFO: Started pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae in namespace container-probe-9427 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 18:54:39.889 + Apr 5 18:54:39.892: INFO: Initial restart count of pod busybox-716dff8c-3c81-4255-bc97-ee960a5827ae is 0 + STEP: deleting the pod 04/05/23 18:58:40.501 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 18:58:40.516: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-9427" for this suite. 04/05/23 18:58:40.522 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Secrets + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:95 +[BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:58:40.532 +Apr 5 18:58:40.532: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 18:58:40.533 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:40.553 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:40.556 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:95 +STEP: creating secret secrets-5970/secret-test-58f15b44-3a20-4e73-ad3e-7f8d3329f752 04/05/23 18:58:40.559 +STEP: Creating a pod to test consume secrets 04/05/23 18:58:40.564 +Apr 5 18:58:40.573: INFO: Waiting up to 5m0s for pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67" in namespace "secrets-5970" to be "Succeeded or Failed" +Apr 5 18:58:40.576: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 3.373445ms +Apr 5 18:58:42.581: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008157687s +Apr 5 18:58:44.581: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008676949s +Apr 5 18:58:46.580: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.007325763s +STEP: Saw pod success 04/05/23 18:58:46.58 +Apr 5 18:58:46.580: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67" satisfied condition "Succeeded or Failed" +Apr 5 18:58:46.584: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 container env-test: +STEP: delete the pod 04/05/23 18:58:46.6 +Apr 5 18:58:46.614: INFO: Waiting for pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 to disappear +Apr 5 18:58:46.617: INFO: Pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 no longer exists +[AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 18:58:46.617: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-5970" for this suite. 04/05/23 18:58:46.623 +------------------------------ +• [SLOW TEST] [6.097 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:95 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:58:40.532 + Apr 5 18:58:40.532: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 18:58:40.533 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:40.553 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:40.556 + [BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:95 + STEP: creating secret secrets-5970/secret-test-58f15b44-3a20-4e73-ad3e-7f8d3329f752 04/05/23 18:58:40.559 + STEP: Creating a pod to test consume secrets 04/05/23 18:58:40.564 + Apr 5 18:58:40.573: INFO: Waiting up to 5m0s for pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67" in namespace "secrets-5970" to be "Succeeded or Failed" + Apr 5 18:58:40.576: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 3.373445ms + Apr 5 18:58:42.581: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008157687s + Apr 5 18:58:44.581: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008676949s + Apr 5 18:58:46.580: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.007325763s + STEP: Saw pod success 04/05/23 18:58:46.58 + Apr 5 18:58:46.580: INFO: Pod "pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67" satisfied condition "Succeeded or Failed" + Apr 5 18:58:46.584: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 container env-test: + STEP: delete the pod 04/05/23 18:58:46.6 + Apr 5 18:58:46.614: INFO: Waiting for pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 to disappear + Apr 5 18:58:46.617: INFO: Pod pod-configmaps-f73234e3-8807-4845-8890-e6e78d42af67 no longer exists + [AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 18:58:46.617: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-5970" for this suite. 04/05/23 18:58:46.623 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:107 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:58:46.634 +Apr 5 18:58:46.634: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 18:58:46.634 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:46.652 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:46.656 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:107 +STEP: Creating a pod to test emptydir 0666 on tmpfs 04/05/23 18:58:46.659 +Apr 5 18:58:46.666: INFO: Waiting up to 5m0s for pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef" in namespace "emptydir-583" to be "Succeeded or Failed" +Apr 5 18:58:46.669: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.91461ms +Apr 5 18:58:48.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00855247s +Apr 5 18:58:50.674: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008066465s +Apr 5 18:58:52.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008726157s +Apr 5 18:58:54.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008597595s +STEP: Saw pod success 04/05/23 18:58:54.675 +Apr 5 18:58:54.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef" satisfied condition "Succeeded or Failed" +Apr 5 18:58:54.678: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef container test-container: +STEP: delete the pod 04/05/23 18:58:54.685 +Apr 5 18:58:54.701: INFO: Waiting for pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef to disappear +Apr 5 18:58:54.703: INFO: Pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 18:58:54.704: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-583" for this suite. 04/05/23 18:58:54.708 +------------------------------ +• [SLOW TEST] [8.081 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:107 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:58:46.634 + Apr 5 18:58:46.634: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 18:58:46.634 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:46.652 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:46.656 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:107 + STEP: Creating a pod to test emptydir 0666 on tmpfs 04/05/23 18:58:46.659 + Apr 5 18:58:46.666: INFO: Waiting up to 5m0s for pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef" in namespace "emptydir-583" to be "Succeeded or Failed" + Apr 5 18:58:46.669: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.91461ms + Apr 5 18:58:48.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00855247s + Apr 5 18:58:50.674: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008066465s + Apr 5 18:58:52.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008726157s + Apr 5 18:58:54.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008597595s + STEP: Saw pod success 04/05/23 18:58:54.675 + Apr 5 18:58:54.675: INFO: Pod "pod-fe543a31-eca5-45b6-9d56-2c47798535ef" satisfied condition "Succeeded or Failed" + Apr 5 18:58:54.678: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef container test-container: + STEP: delete the pod 04/05/23 18:58:54.685 + Apr 5 18:58:54.701: INFO: Waiting for pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef to disappear + Apr 5 18:58:54.703: INFO: Pod pod-fe543a31-eca5-45b6-9d56-2c47798535ef no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 18:58:54.704: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-583" for this suite. 04/05/23 18:58:54.708 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] IngressClass API + should support creating IngressClass API operations [Conformance] + test/e2e/network/ingressclass.go:223 +[BeforeEach] [sig-network] IngressClass API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:58:54.727 +Apr 5 18:58:54.727: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename ingressclass 04/05/23 18:58:54.728 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:54.755 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:54.759 +[BeforeEach] [sig-network] IngressClass API + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] IngressClass API + test/e2e/network/ingressclass.go:211 +[It] should support creating IngressClass API operations [Conformance] + test/e2e/network/ingressclass.go:223 +STEP: getting /apis 04/05/23 18:58:54.763 +STEP: getting /apis/networking.k8s.io 04/05/23 18:58:54.767 +STEP: getting /apis/networking.k8s.iov1 04/05/23 18:58:54.769 +STEP: creating 04/05/23 18:58:54.771 +STEP: getting 04/05/23 18:58:54.785 +STEP: listing 04/05/23 18:58:54.788 +STEP: watching 04/05/23 18:58:54.791 +Apr 5 18:58:54.791: INFO: starting watch +STEP: patching 04/05/23 18:58:54.793 +STEP: updating 04/05/23 18:58:54.798 +Apr 5 18:58:54.803: INFO: waiting for watch events with expected annotations +Apr 5 18:58:54.803: INFO: saw patched and updated annotations +STEP: deleting 04/05/23 18:58:54.804 +STEP: deleting a collection 04/05/23 18:58:54.815 +[AfterEach] [sig-network] IngressClass API + test/e2e/framework/node/init/init.go:32 +Apr 5 18:58:54.832: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] IngressClass API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] IngressClass API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] IngressClass API + tear down framework | framework.go:193 +STEP: Destroying namespace "ingressclass-2937" for this suite. 04/05/23 18:58:54.838 +------------------------------ +• [0.117 seconds] +[sig-network] IngressClass API +test/e2e/network/common/framework.go:23 + should support creating IngressClass API operations [Conformance] + test/e2e/network/ingressclass.go:223 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] IngressClass API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:58:54.727 + Apr 5 18:58:54.727: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename ingressclass 04/05/23 18:58:54.728 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:54.755 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:54.759 + [BeforeEach] [sig-network] IngressClass API + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] IngressClass API + test/e2e/network/ingressclass.go:211 + [It] should support creating IngressClass API operations [Conformance] + test/e2e/network/ingressclass.go:223 + STEP: getting /apis 04/05/23 18:58:54.763 + STEP: getting /apis/networking.k8s.io 04/05/23 18:58:54.767 + STEP: getting /apis/networking.k8s.iov1 04/05/23 18:58:54.769 + STEP: creating 04/05/23 18:58:54.771 + STEP: getting 04/05/23 18:58:54.785 + STEP: listing 04/05/23 18:58:54.788 + STEP: watching 04/05/23 18:58:54.791 + Apr 5 18:58:54.791: INFO: starting watch + STEP: patching 04/05/23 18:58:54.793 + STEP: updating 04/05/23 18:58:54.798 + Apr 5 18:58:54.803: INFO: waiting for watch events with expected annotations + Apr 5 18:58:54.803: INFO: saw patched and updated annotations + STEP: deleting 04/05/23 18:58:54.804 + STEP: deleting a collection 04/05/23 18:58:54.815 + [AfterEach] [sig-network] IngressClass API + test/e2e/framework/node/init/init.go:32 + Apr 5 18:58:54.832: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] IngressClass API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] IngressClass API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] IngressClass API + tear down framework | framework.go:193 + STEP: Destroying namespace "ingressclass-2937" for this suite. 04/05/23 18:58:54.838 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + Should recreate evicted statefulset [Conformance] + test/e2e/apps/statefulset.go:739 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:58:54.844 +Apr 5 18:58:54.844: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 18:58:54.845 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:54.871 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:54.874 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-7201 04/05/23 18:58:54.878 +[It] Should recreate evicted statefulset [Conformance] + test/e2e/apps/statefulset.go:739 +STEP: Looking for a node to schedule stateful set and pod 04/05/23 18:58:54.884 +STEP: Creating pod with conflicting port in namespace statefulset-7201 04/05/23 18:58:54.89 +STEP: Waiting until pod test-pod will start running in namespace statefulset-7201 04/05/23 18:58:54.898 +Apr 5 18:58:54.898: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "statefulset-7201" to be "running" +Apr 5 18:58:54.904: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 5.463532ms +Apr 5 18:58:56.909: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010670506s +Apr 5 18:58:58.908: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009568928s +Apr 5 18:59:00.910: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.011755514s +Apr 5 18:59:00.910: INFO: Pod "test-pod" satisfied condition "running" +STEP: Creating statefulset with conflicting port in namespace statefulset-7201 04/05/23 18:59:00.91 +STEP: Waiting until stateful pod ss-0 will be recreated and deleted at least once in namespace statefulset-7201 04/05/23 18:59:00.919 +Apr 5 18:59:00.944: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Pending. Waiting for statefulset controller to delete. +Apr 5 18:59:00.959: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Failed. Waiting for statefulset controller to delete. +Apr 5 18:59:00.968: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Failed. Waiting for statefulset controller to delete. +Apr 5 18:59:00.974: INFO: Observed delete event for stateful pod ss-0 in namespace statefulset-7201 +STEP: Removing pod with conflicting port in namespace statefulset-7201 04/05/23 18:59:00.974 +STEP: Waiting when stateful pod ss-0 will be recreated in namespace statefulset-7201 and will be in running state 04/05/23 18:59:00.989 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 18:59:07.007: INFO: Deleting all statefulset in ns statefulset-7201 +Apr 5 18:59:07.010: INFO: Scaling statefulset ss to 0 +Apr 5 18:59:17.030: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 18:59:17.033: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:17.045: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-7201" for this suite. 04/05/23 18:59:17.052 +------------------------------ +• [SLOW TEST] [22.215 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + Should recreate evicted statefulset [Conformance] + test/e2e/apps/statefulset.go:739 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:58:54.844 + Apr 5 18:58:54.844: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 18:58:54.845 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:58:54.871 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:58:54.874 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-7201 04/05/23 18:58:54.878 + [It] Should recreate evicted statefulset [Conformance] + test/e2e/apps/statefulset.go:739 + STEP: Looking for a node to schedule stateful set and pod 04/05/23 18:58:54.884 + STEP: Creating pod with conflicting port in namespace statefulset-7201 04/05/23 18:58:54.89 + STEP: Waiting until pod test-pod will start running in namespace statefulset-7201 04/05/23 18:58:54.898 + Apr 5 18:58:54.898: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "statefulset-7201" to be "running" + Apr 5 18:58:54.904: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 5.463532ms + Apr 5 18:58:56.909: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010670506s + Apr 5 18:58:58.908: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009568928s + Apr 5 18:59:00.910: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.011755514s + Apr 5 18:59:00.910: INFO: Pod "test-pod" satisfied condition "running" + STEP: Creating statefulset with conflicting port in namespace statefulset-7201 04/05/23 18:59:00.91 + STEP: Waiting until stateful pod ss-0 will be recreated and deleted at least once in namespace statefulset-7201 04/05/23 18:59:00.919 + Apr 5 18:59:00.944: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Pending. Waiting for statefulset controller to delete. + Apr 5 18:59:00.959: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Failed. Waiting for statefulset controller to delete. + Apr 5 18:59:00.968: INFO: Observed stateful pod in namespace: statefulset-7201, name: ss-0, uid: a6d39ee9-67aa-43ba-a977-aaa031be81c7, status phase: Failed. Waiting for statefulset controller to delete. + Apr 5 18:59:00.974: INFO: Observed delete event for stateful pod ss-0 in namespace statefulset-7201 + STEP: Removing pod with conflicting port in namespace statefulset-7201 04/05/23 18:59:00.974 + STEP: Waiting when stateful pod ss-0 will be recreated in namespace statefulset-7201 and will be in running state 04/05/23 18:59:00.989 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 18:59:07.007: INFO: Deleting all statefulset in ns statefulset-7201 + Apr 5 18:59:07.010: INFO: Scaling statefulset ss to 0 + Apr 5 18:59:17.030: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 18:59:17.033: INFO: Deleting statefulset ss + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:17.045: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-7201" for this suite. 04/05/23 18:59:17.052 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:78 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:17.059 +Apr 5 18:59:17.059: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 18:59:17.061 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:17.079 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:17.082 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:78 +STEP: Creating projection with secret that has name projected-secret-test-map-36b3d260-8078-471f-b746-340dd1853c58 04/05/23 18:59:17.086 +STEP: Creating a pod to test consume secrets 04/05/23 18:59:17.092 +Apr 5 18:59:17.103: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02" in namespace "projected-581" to be "Succeeded or Failed" +Apr 5 18:59:17.106: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 3.021112ms +Apr 5 18:59:19.110: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007388481s +Apr 5 18:59:21.112: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008846933s +Apr 5 18:59:23.112: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008563096s +Apr 5 18:59:25.111: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00768249s +STEP: Saw pod success 04/05/23 18:59:25.111 +Apr 5 18:59:25.111: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02" satisfied condition "Succeeded or Failed" +Apr 5 18:59:25.114: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 container projected-secret-volume-test: +STEP: delete the pod 04/05/23 18:59:25.122 +Apr 5 18:59:25.137: INFO: Waiting for pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 to disappear +Apr 5 18:59:25.140: INFO: Pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:25.140: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-581" for this suite. 04/05/23 18:59:25.146 +------------------------------ +• [SLOW TEST] [8.093 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/common/storage/projected_secret.go:78 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:17.059 + Apr 5 18:59:17.059: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 18:59:17.061 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:17.079 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:17.082 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:78 + STEP: Creating projection with secret that has name projected-secret-test-map-36b3d260-8078-471f-b746-340dd1853c58 04/05/23 18:59:17.086 + STEP: Creating a pod to test consume secrets 04/05/23 18:59:17.092 + Apr 5 18:59:17.103: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02" in namespace "projected-581" to be "Succeeded or Failed" + Apr 5 18:59:17.106: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 3.021112ms + Apr 5 18:59:19.110: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007388481s + Apr 5 18:59:21.112: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008846933s + Apr 5 18:59:23.112: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008563096s + Apr 5 18:59:25.111: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00768249s + STEP: Saw pod success 04/05/23 18:59:25.111 + Apr 5 18:59:25.111: INFO: Pod "pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02" satisfied condition "Succeeded or Failed" + Apr 5 18:59:25.114: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 container projected-secret-volume-test: + STEP: delete the pod 04/05/23 18:59:25.122 + Apr 5 18:59:25.137: INFO: Waiting for pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 to disappear + Apr 5 18:59:25.140: INFO: Pod pod-projected-secrets-f378906f-19e2-4ad8-9f12-c49966ccca02 no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:25.140: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-581" for this suite. 04/05/23 18:59:25.146 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Ephemeral Containers [NodeConformance] + will start an ephemeral container in an existing pod [Conformance] + test/e2e/common/node/ephemeral_containers.go:45 +[BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:25.159 +Apr 5 18:59:25.159: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename ephemeral-containers-test 04/05/23 18:59:25.16 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:25.175 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:25.177 +[BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/common/node/ephemeral_containers.go:38 +[It] will start an ephemeral container in an existing pod [Conformance] + test/e2e/common/node/ephemeral_containers.go:45 +STEP: creating a target pod 04/05/23 18:59:25.18 +Apr 5 18:59:25.191: INFO: Waiting up to 5m0s for pod "ephemeral-containers-target-pod" in namespace "ephemeral-containers-test-7165" to be "running and ready" +Apr 5 18:59:25.193: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.615336ms +Apr 5 18:59:25.194: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:59:27.199: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007672398s +Apr 5 18:59:27.199: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:59:29.199: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008017238s +Apr 5 18:59:29.199: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 18:59:31.198: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.007175563s +Apr 5 18:59:31.198: INFO: The phase of Pod ephemeral-containers-target-pod is Running (Ready = true) +Apr 5 18:59:31.198: INFO: Pod "ephemeral-containers-target-pod" satisfied condition "running and ready" +STEP: adding an ephemeral container 04/05/23 18:59:31.202 +Apr 5 18:59:31.213: INFO: Waiting up to 1m0s for pod "ephemeral-containers-target-pod" in namespace "ephemeral-containers-test-7165" to be "container debugger running" +Apr 5 18:59:31.218: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 5.599311ms +Apr 5 18:59:33.224: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 2.011040222s +Apr 5 18:59:33.224: INFO: Pod "ephemeral-containers-target-pod" satisfied condition "container debugger running" +STEP: checking pod container endpoints 04/05/23 18:59:33.224 +Apr 5 18:59:33.225: INFO: ExecWithOptions {Command:[/bin/echo marco] Namespace:ephemeral-containers-test-7165 PodName:ephemeral-containers-target-pod ContainerName:debugger Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 18:59:33.225: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 18:59:33.226: INFO: ExecWithOptions: Clientset creation +Apr 5 18:59:33.226: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/ephemeral-containers-test-7165/pods/ephemeral-containers-target-pod/exec?command=%2Fbin%2Fecho&command=marco&container=debugger&container=debugger&stderr=true&stdout=true) +Apr 5 18:59:33.322: INFO: Exec stderr: "" +[AfterEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:33.332: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "ephemeral-containers-test-7165" for this suite. 04/05/23 18:59:33.338 +------------------------------ +• [SLOW TEST] [8.186 seconds] +[sig-node] Ephemeral Containers [NodeConformance] +test/e2e/common/node/framework.go:23 + will start an ephemeral container in an existing pod [Conformance] + test/e2e/common/node/ephemeral_containers.go:45 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:25.159 + Apr 5 18:59:25.159: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename ephemeral-containers-test 04/05/23 18:59:25.16 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:25.175 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:25.177 + [BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/common/node/ephemeral_containers.go:38 + [It] will start an ephemeral container in an existing pod [Conformance] + test/e2e/common/node/ephemeral_containers.go:45 + STEP: creating a target pod 04/05/23 18:59:25.18 + Apr 5 18:59:25.191: INFO: Waiting up to 5m0s for pod "ephemeral-containers-target-pod" in namespace "ephemeral-containers-test-7165" to be "running and ready" + Apr 5 18:59:25.193: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.615336ms + Apr 5 18:59:25.194: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:59:27.199: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007672398s + Apr 5 18:59:27.199: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:59:29.199: INFO: Pod "ephemeral-containers-target-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008017238s + Apr 5 18:59:29.199: INFO: The phase of Pod ephemeral-containers-target-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 18:59:31.198: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.007175563s + Apr 5 18:59:31.198: INFO: The phase of Pod ephemeral-containers-target-pod is Running (Ready = true) + Apr 5 18:59:31.198: INFO: Pod "ephemeral-containers-target-pod" satisfied condition "running and ready" + STEP: adding an ephemeral container 04/05/23 18:59:31.202 + Apr 5 18:59:31.213: INFO: Waiting up to 1m0s for pod "ephemeral-containers-target-pod" in namespace "ephemeral-containers-test-7165" to be "container debugger running" + Apr 5 18:59:31.218: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 5.599311ms + Apr 5 18:59:33.224: INFO: Pod "ephemeral-containers-target-pod": Phase="Running", Reason="", readiness=true. Elapsed: 2.011040222s + Apr 5 18:59:33.224: INFO: Pod "ephemeral-containers-target-pod" satisfied condition "container debugger running" + STEP: checking pod container endpoints 04/05/23 18:59:33.224 + Apr 5 18:59:33.225: INFO: ExecWithOptions {Command:[/bin/echo marco] Namespace:ephemeral-containers-test-7165 PodName:ephemeral-containers-target-pod ContainerName:debugger Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 18:59:33.225: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 18:59:33.226: INFO: ExecWithOptions: Clientset creation + Apr 5 18:59:33.226: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/ephemeral-containers-test-7165/pods/ephemeral-containers-target-pod/exec?command=%2Fbin%2Fecho&command=marco&container=debugger&container=debugger&stderr=true&stdout=true) + Apr 5 18:59:33.322: INFO: Exec stderr: "" + [AfterEach] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:33.332: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Ephemeral Containers [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "ephemeral-containers-test-7165" for this suite. 04/05/23 18:59:33.338 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource [Conformance] + test/e2e/apimachinery/webhook.go:291 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:33.348 +Apr 5 18:59:33.348: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 18:59:33.35 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:33.365 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:33.368 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 18:59:33.383 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 18:59:33.819 +STEP: Deploying the webhook pod 04/05/23 18:59:33.828 +STEP: Wait for the deployment to be ready 04/05/23 18:59:33.843 +Apr 5 18:59:33.851: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 18:59:35.862: 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(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 18:59:37.869: 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(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 18:59:39.867 +STEP: Verifying the service has paired with the endpoint 04/05/23 18:59:39.883 +Apr 5 18:59:40.883: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate custom resource [Conformance] + test/e2e/apimachinery/webhook.go:291 +Apr 5 18:59:40.888: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-8997-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 18:59:41.398 +STEP: Creating a custom resource that should be mutated by the webhook 04/05/23 18:59:41.417 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:43.993: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-7935" for this suite. 04/05/23 18:59:44.046 +STEP: Destroying namespace "webhook-7935-markers" for this suite. 04/05/23 18:59:44.055 +------------------------------ +• [SLOW TEST] [10.717 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource [Conformance] + test/e2e/apimachinery/webhook.go:291 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:33.348 + Apr 5 18:59:33.348: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 18:59:33.35 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:33.365 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:33.368 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 18:59:33.383 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 18:59:33.819 + STEP: Deploying the webhook pod 04/05/23 18:59:33.828 + STEP: Wait for the deployment to be ready 04/05/23 18:59:33.843 + Apr 5 18:59:33.851: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 18:59:35.862: 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(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 18:59:37.869: 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(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 18, 59, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 18:59:39.867 + STEP: Verifying the service has paired with the endpoint 04/05/23 18:59:39.883 + Apr 5 18:59:40.883: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should mutate custom resource [Conformance] + test/e2e/apimachinery/webhook.go:291 + Apr 5 18:59:40.888: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Registering the mutating webhook for custom resource e2e-test-webhook-8997-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 18:59:41.398 + STEP: Creating a custom resource that should be mutated by the webhook 04/05/23 18:59:41.417 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:43.993: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-7935" for this suite. 04/05/23 18:59:44.046 + STEP: Destroying namespace "webhook-7935-markers" for this suite. 04/05/23 18:59:44.055 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-network] Services + should find a service from listing all namespaces [Conformance] + test/e2e/network/service.go:3219 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:44.069 +Apr 5 18:59:44.069: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 18:59:44.07 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:44.091 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:44.093 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should find a service from listing all namespaces [Conformance] + test/e2e/network/service.go:3219 +STEP: fetching services 04/05/23 18:59:44.098 +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:44.102: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-8917" for this suite. 04/05/23 18:59:44.109 +------------------------------ +• [0.047 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should find a service from listing all namespaces [Conformance] + test/e2e/network/service.go:3219 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:44.069 + Apr 5 18:59:44.069: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 18:59:44.07 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:44.091 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:44.093 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should find a service from listing all namespaces [Conformance] + test/e2e/network/service.go:3219 + STEP: fetching services 04/05/23 18:59:44.098 + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:44.102: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-8917" for this suite. 04/05/23 18:59:44.109 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/network/service.go:1515 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:44.13 +Apr 5 18:59:44.130: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 18:59:44.131 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:44.147 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:44.151 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/network/service.go:1515 +STEP: creating a service clusterip-service with the type=ClusterIP in namespace services-4251 04/05/23 18:59:44.155 +STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service 04/05/23 18:59:44.173 +STEP: creating service externalsvc in namespace services-4251 04/05/23 18:59:44.174 +STEP: creating replication controller externalsvc in namespace services-4251 04/05/23 18:59:44.196 +I0405 18:59:44.203249 19 runners.go:193] Created replication controller with name: externalsvc, namespace: services-4251, replica count: 2 +I0405 18:59:47.256999 19 runners.go:193] externalsvc Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 18:59:50.257366 19 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 04/05/23 18:59:50.261 +Apr 5 18:59:50.284: INFO: Creating new exec pod +Apr 5 18:59:50.296: INFO: Waiting up to 5m0s for pod "execpodrvdxl" in namespace "services-4251" to be "running" +Apr 5 18:59:50.300: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 3.466417ms +Apr 5 18:59:52.306: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009229109s +Apr 5 18:59:54.305: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008823291s +Apr 5 18:59:56.307: INFO: Pod "execpodrvdxl": Phase="Running", Reason="", readiness=true. Elapsed: 6.010086602s +Apr 5 18:59:56.307: INFO: Pod "execpodrvdxl" satisfied condition "running" +Apr 5 18:59:56.307: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4251 exec execpodrvdxl -- /bin/sh -x -c nslookup clusterip-service.services-4251.svc.cluster.local' +Apr 5 18:59:56.512: INFO: stderr: "+ nslookup clusterip-service.services-4251.svc.cluster.local\n" +Apr 5 18:59:56.512: INFO: stdout: "Server:\t\t10.128.0.10\nAddress:\t10.128.0.10#53\n\nclusterip-service.services-4251.svc.cluster.local\tcanonical name = externalsvc.services-4251.svc.cluster.local.\nName:\texternalsvc.services-4251.svc.cluster.local\nAddress: 10.138.76.9\n\n" +STEP: deleting ReplicationController externalsvc in namespace services-4251, will wait for the garbage collector to delete the pods 04/05/23 18:59:56.512 +Apr 5 18:59:56.574: INFO: Deleting ReplicationController externalsvc took: 6.635966ms +Apr 5 18:59:56.674: INFO: Terminating ReplicationController externalsvc pods took: 100.264698ms +Apr 5 18:59:59.101: INFO: Cleaning up the ClusterIP to ExternalName test service +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 18:59:59.113: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-4251" for this suite. 04/05/23 18:59:59.12 +------------------------------ +• [SLOW TEST] [14.997 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/network/service.go:1515 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:44.13 + Apr 5 18:59:44.130: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 18:59:44.131 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:44.147 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:44.151 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/network/service.go:1515 + STEP: creating a service clusterip-service with the type=ClusterIP in namespace services-4251 04/05/23 18:59:44.155 + STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service 04/05/23 18:59:44.173 + STEP: creating service externalsvc in namespace services-4251 04/05/23 18:59:44.174 + STEP: creating replication controller externalsvc in namespace services-4251 04/05/23 18:59:44.196 + I0405 18:59:44.203249 19 runners.go:193] Created replication controller with name: externalsvc, namespace: services-4251, replica count: 2 + I0405 18:59:47.256999 19 runners.go:193] externalsvc Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 18:59:50.257366 19 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 04/05/23 18:59:50.261 + Apr 5 18:59:50.284: INFO: Creating new exec pod + Apr 5 18:59:50.296: INFO: Waiting up to 5m0s for pod "execpodrvdxl" in namespace "services-4251" to be "running" + Apr 5 18:59:50.300: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 3.466417ms + Apr 5 18:59:52.306: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009229109s + Apr 5 18:59:54.305: INFO: Pod "execpodrvdxl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008823291s + Apr 5 18:59:56.307: INFO: Pod "execpodrvdxl": Phase="Running", Reason="", readiness=true. Elapsed: 6.010086602s + Apr 5 18:59:56.307: INFO: Pod "execpodrvdxl" satisfied condition "running" + Apr 5 18:59:56.307: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4251 exec execpodrvdxl -- /bin/sh -x -c nslookup clusterip-service.services-4251.svc.cluster.local' + Apr 5 18:59:56.512: INFO: stderr: "+ nslookup clusterip-service.services-4251.svc.cluster.local\n" + Apr 5 18:59:56.512: INFO: stdout: "Server:\t\t10.128.0.10\nAddress:\t10.128.0.10#53\n\nclusterip-service.services-4251.svc.cluster.local\tcanonical name = externalsvc.services-4251.svc.cluster.local.\nName:\texternalsvc.services-4251.svc.cluster.local\nAddress: 10.138.76.9\n\n" + STEP: deleting ReplicationController externalsvc in namespace services-4251, will wait for the garbage collector to delete the pods 04/05/23 18:59:56.512 + Apr 5 18:59:56.574: INFO: Deleting ReplicationController externalsvc took: 6.635966ms + Apr 5 18:59:56.674: INFO: Terminating ReplicationController externalsvc pods took: 100.264698ms + Apr 5 18:59:59.101: INFO: Cleaning up the ClusterIP to ExternalName test service + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 18:59:59.113: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-4251" for this suite. 04/05/23 18:59:59.12 + << End Captured GinkgoWriter Output +------------------------------ +[sig-network] Proxy version v1 + A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/network/proxy.go:286 +[BeforeEach] version v1 + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 18:59:59.127 +Apr 5 18:59:59.127: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename proxy 04/05/23 18:59:59.128 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:59.147 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:59.149 +[BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 +[It] A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/network/proxy.go:286 +Apr 5 18:59:59.152: INFO: Creating pod... +Apr 5 18:59:59.160: INFO: Waiting up to 5m0s for pod "agnhost" in namespace "proxy-1086" to be "running" +Apr 5 18:59:59.163: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.928707ms +Apr 5 19:00:01.168: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008406635s +Apr 5 19:00:03.167: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007311742s +Apr 5 19:00:05.169: INFO: Pod "agnhost": Phase="Running", Reason="", readiness=true. Elapsed: 6.008703589s +Apr 5 19:00:05.169: INFO: Pod "agnhost" satisfied condition "running" +Apr 5 19:00:05.169: INFO: Creating service... +Apr 5 19:00:05.190: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/DELETE +Apr 5 19:00:05.199: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Apr 5 19:00:05.199: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/GET +Apr 5 19:00:05.204: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET +Apr 5 19:00:05.204: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/HEAD +Apr 5 19:00:05.209: INFO: http.Client request:HEAD | StatusCode:200 +Apr 5 19:00:05.209: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/OPTIONS +Apr 5 19:00:05.213: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Apr 5 19:00:05.213: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/PATCH +Apr 5 19:00:05.217: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Apr 5 19:00:05.218: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/POST +Apr 5 19:00:05.222: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Apr 5 19:00:05.222: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/PUT +Apr 5 19:00:05.226: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Apr 5 19:00:05.226: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/DELETE +Apr 5 19:00:05.233: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Apr 5 19:00:05.233: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/GET +Apr 5 19:00:05.240: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET +Apr 5 19:00:05.241: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/HEAD +Apr 5 19:00:05.247: INFO: http.Client request:HEAD | StatusCode:200 +Apr 5 19:00:05.247: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/OPTIONS +Apr 5 19:00:05.255: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Apr 5 19:00:05.255: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/PATCH +Apr 5 19:00:05.262: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Apr 5 19:00:05.262: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/POST +Apr 5 19:00:05.268: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Apr 5 19:00:05.269: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/PUT +Apr 5 19:00:05.275: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +[AfterEach] version v1 + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:05.276: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] version v1 + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] version v1 + dump namespaces | framework.go:196 +[DeferCleanup (Each)] version v1 + tear down framework | framework.go:193 +STEP: Destroying namespace "proxy-1086" for this suite. 04/05/23 19:00:05.283 +------------------------------ +• [SLOW TEST] [6.166 seconds] +[sig-network] Proxy +test/e2e/network/common/framework.go:23 + version v1 + test/e2e/network/proxy.go:74 + A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/network/proxy.go:286 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] version v1 + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 18:59:59.127 + Apr 5 18:59:59.127: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename proxy 04/05/23 18:59:59.128 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 18:59:59.147 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 18:59:59.149 + [BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 + [It] A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/network/proxy.go:286 + Apr 5 18:59:59.152: INFO: Creating pod... + Apr 5 18:59:59.160: INFO: Waiting up to 5m0s for pod "agnhost" in namespace "proxy-1086" to be "running" + Apr 5 18:59:59.163: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.928707ms + Apr 5 19:00:01.168: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008406635s + Apr 5 19:00:03.167: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007311742s + Apr 5 19:00:05.169: INFO: Pod "agnhost": Phase="Running", Reason="", readiness=true. Elapsed: 6.008703589s + Apr 5 19:00:05.169: INFO: Pod "agnhost" satisfied condition "running" + Apr 5 19:00:05.169: INFO: Creating service... + Apr 5 19:00:05.190: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/DELETE + Apr 5 19:00:05.199: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE + Apr 5 19:00:05.199: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/GET + Apr 5 19:00:05.204: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET + Apr 5 19:00:05.204: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/HEAD + Apr 5 19:00:05.209: INFO: http.Client request:HEAD | StatusCode:200 + Apr 5 19:00:05.209: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/OPTIONS + Apr 5 19:00:05.213: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS + Apr 5 19:00:05.213: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/PATCH + Apr 5 19:00:05.217: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH + Apr 5 19:00:05.218: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/POST + Apr 5 19:00:05.222: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST + Apr 5 19:00:05.222: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/pods/agnhost/proxy/some/path/with/PUT + Apr 5 19:00:05.226: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT + Apr 5 19:00:05.226: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/DELETE + Apr 5 19:00:05.233: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE + Apr 5 19:00:05.233: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/GET + Apr 5 19:00:05.240: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET + Apr 5 19:00:05.241: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/HEAD + Apr 5 19:00:05.247: INFO: http.Client request:HEAD | StatusCode:200 + Apr 5 19:00:05.247: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/OPTIONS + Apr 5 19:00:05.255: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS + Apr 5 19:00:05.255: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/PATCH + Apr 5 19:00:05.262: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH + Apr 5 19:00:05.262: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/POST + Apr 5 19:00:05.268: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST + Apr 5 19:00:05.269: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-1086/services/test-service/proxy/some/path/with/PUT + Apr 5 19:00:05.275: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT + [AfterEach] version v1 + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:05.276: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] version v1 + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] version v1 + dump namespaces | framework.go:196 + [DeferCleanup (Each)] version v1 + tear down framework | framework.go:193 + STEP: Destroying namespace "proxy-1086" for this suite. 04/05/23 19:00:05.283 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with configmap pod [Conformance] + test/e2e/storage/subpath.go:70 +[BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:05.3 +Apr 5 19:00:05.300: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename subpath 04/05/23 19:00:05.301 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:05.326 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:05.329 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data 04/05/23 19:00:05.334 +[It] should support subpaths with configmap pod [Conformance] + test/e2e/storage/subpath.go:70 +STEP: Creating pod pod-subpath-test-configmap-p2xl 04/05/23 19:00:05.345 +STEP: Creating a pod to test atomic-volume-subpath 04/05/23 19:00:05.345 +Apr 5 19:00:05.355: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-p2xl" in namespace "subpath-5277" to be "Succeeded or Failed" +Apr 5 19:00:05.361: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.019336ms +Apr 5 19:00:07.368: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011148955s +Apr 5 19:00:09.364: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007244973s +Apr 5 19:00:11.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 6.009531427s +Apr 5 19:00:13.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 8.008696594s +Apr 5 19:00:15.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 10.008451268s +Apr 5 19:00:17.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 12.00989389s +Apr 5 19:00:19.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 14.009536161s +Apr 5 19:00:21.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 16.008582012s +Apr 5 19:00:23.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 18.008996057s +Apr 5 19:00:25.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 20.009550984s +Apr 5 19:00:27.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 22.009492598s +Apr 5 19:00:29.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 24.009346141s +Apr 5 19:00:31.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=false. Elapsed: 26.009174543s +Apr 5 19:00:33.367: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.010603499s +STEP: Saw pod success 04/05/23 19:00:33.367 +Apr 5 19:00:33.368: INFO: Pod "pod-subpath-test-configmap-p2xl" satisfied condition "Succeeded or Failed" +Apr 5 19:00:33.371: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-configmap-p2xl container test-container-subpath-configmap-p2xl: +STEP: delete the pod 04/05/23 19:00:33.378 +Apr 5 19:00:33.393: INFO: Waiting for pod pod-subpath-test-configmap-p2xl to disappear +Apr 5 19:00:33.395: INFO: Pod pod-subpath-test-configmap-p2xl no longer exists +STEP: Deleting pod pod-subpath-test-configmap-p2xl 04/05/23 19:00:33.395 +Apr 5 19:00:33.395: INFO: Deleting pod "pod-subpath-test-configmap-p2xl" in namespace "subpath-5277" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:33.398: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 +STEP: Destroying namespace "subpath-5277" for this suite. 04/05/23 19:00:33.404 +------------------------------ +• [SLOW TEST] [28.112 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/storage/subpath.go:70 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:05.3 + Apr 5 19:00:05.300: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename subpath 04/05/23 19:00:05.301 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:05.326 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:05.329 + [BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 + STEP: Setting up data 04/05/23 19:00:05.334 + [It] should support subpaths with configmap pod [Conformance] + test/e2e/storage/subpath.go:70 + STEP: Creating pod pod-subpath-test-configmap-p2xl 04/05/23 19:00:05.345 + STEP: Creating a pod to test atomic-volume-subpath 04/05/23 19:00:05.345 + Apr 5 19:00:05.355: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-p2xl" in namespace "subpath-5277" to be "Succeeded or Failed" + Apr 5 19:00:05.361: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.019336ms + Apr 5 19:00:07.368: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011148955s + Apr 5 19:00:09.364: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007244973s + Apr 5 19:00:11.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 6.009531427s + Apr 5 19:00:13.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 8.008696594s + Apr 5 19:00:15.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 10.008451268s + Apr 5 19:00:17.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 12.00989389s + Apr 5 19:00:19.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 14.009536161s + Apr 5 19:00:21.365: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 16.008582012s + Apr 5 19:00:23.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 18.008996057s + Apr 5 19:00:25.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 20.009550984s + Apr 5 19:00:27.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 22.009492598s + Apr 5 19:00:29.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=true. Elapsed: 24.009346141s + Apr 5 19:00:31.366: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Running", Reason="", readiness=false. Elapsed: 26.009174543s + Apr 5 19:00:33.367: INFO: Pod "pod-subpath-test-configmap-p2xl": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.010603499s + STEP: Saw pod success 04/05/23 19:00:33.367 + Apr 5 19:00:33.368: INFO: Pod "pod-subpath-test-configmap-p2xl" satisfied condition "Succeeded or Failed" + Apr 5 19:00:33.371: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-configmap-p2xl container test-container-subpath-configmap-p2xl: + STEP: delete the pod 04/05/23 19:00:33.378 + Apr 5 19:00:33.393: INFO: Waiting for pod pod-subpath-test-configmap-p2xl to disappear + Apr 5 19:00:33.395: INFO: Pod pod-subpath-test-configmap-p2xl no longer exists + STEP: Deleting pod pod-subpath-test-configmap-p2xl 04/05/23 19:00:33.395 + Apr 5 19:00:33.395: INFO: Deleting pod "pod-subpath-test-configmap-p2xl" in namespace "subpath-5277" + [AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:33.398: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 + STEP: Destroying namespace "subpath-5277" for this suite. 04/05/23 19:00:33.404 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] Deployment + RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:113 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:33.416 +Apr 5 19:00:33.416: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 19:00:33.417 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:33.439 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:33.443 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:113 +Apr 5 19:00:33.448: INFO: Creating deployment "test-recreate-deployment" +Apr 5 19:00:33.455: INFO: Waiting deployment "test-recreate-deployment" to be updated to revision 1 +Apr 5 19:00:33.461: INFO: deployment "test-recreate-deployment" doesn't have the required revision set +Apr 5 19:00:35.470: INFO: Waiting deployment "test-recreate-deployment" to complete +Apr 5 19:00:35.473: 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(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-recreate-deployment-795566c5cb\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:00:37.479: 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(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-recreate-deployment-795566c5cb\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:00:39.478: INFO: Triggering a new rollout for deployment "test-recreate-deployment" +Apr 5 19:00:39.487: INFO: Updating deployment test-recreate-deployment +Apr 5 19:00:39.487: 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 +Apr 5 19:00:39.611: INFO: Deployment "test-recreate-deployment": +&Deployment{ObjectMeta:{test-recreate-deployment deployment-2891 c40c9815-20bb-4dcc-b902-328be658a9f4 88655 2 2023-04-05 19:00:33 +0000 UTC map[name:sample-pod-3] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 19:00:39 +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 2023-04-05 19:00:39 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0038baf48 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:2023-04-05 19:00:39 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "test-recreate-deployment-cff6dc657" is progressing.,LastUpdateTime:2023-04-05 19:00:39 +0000 UTC,LastTransitionTime:2023-04-05 19:00:33 +0000 UTC,},},ReadyReplicas:0,CollisionCount:nil,},} + +Apr 5 19:00:39.614: INFO: New ReplicaSet "test-recreate-deployment-cff6dc657" of Deployment "test-recreate-deployment": +&ReplicaSet{ObjectMeta:{test-recreate-deployment-cff6dc657 deployment-2891 aa4f6b53-e15a-4d47-92cc-2162eb57aeb3 88651 1 2023-04-05 19:00:39 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-recreate-deployment c40c9815-20bb-4dcc-b902-328be658a9f4 0xc008e97880 0xc008e97881}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:00:39 +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\":\"c40c9815-20bb-4dcc-b902-328be658a9f4\"}":{}}},"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 2023-04-05 19:00:39 +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: cff6dc657,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc008e97918 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{},},} +Apr 5 19:00:39.614: INFO: All old ReplicaSets of Deployment "test-recreate-deployment": +Apr 5 19:00:39.614: INFO: &ReplicaSet{ObjectMeta:{test-recreate-deployment-795566c5cb deployment-2891 1a374679-3316-4676-b577-1c94b53693f6 88639 2 2023-04-05 19:00:33 +0000 UTC map[name:sample-pod-3 pod-template-hash:795566c5cb] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-recreate-deployment c40c9815-20bb-4dcc-b902-328be658a9f4 0xc008e97767 0xc008e97768}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:00:39 +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\":\"c40c9815-20bb-4dcc-b902-328be658a9f4\"}":{}}},"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 2023-04-05 19:00:39 +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: 795566c5cb,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:795566c5cb] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc008e97818 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{},},} +Apr 5 19:00:39.618: INFO: Pod "test-recreate-deployment-cff6dc657-rzwdl" is not available: +&Pod{ObjectMeta:{test-recreate-deployment-cff6dc657-rzwdl test-recreate-deployment-cff6dc657- deployment-2891 be51d1db-09ed-41ca-a298-05f7146d6559 88654 0 2023-04-05 19:00:39 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[] [{apps/v1 ReplicaSet test-recreate-deployment-cff6dc657 aa4f6b53-e15a-4d47-92cc-2162eb57aeb3 0xc008e97d90 0xc008e97d91}] [] [{kube-controller-manager Update v1 2023-04-05 19:00:39 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"aa4f6b53-e15a-4d47-92cc-2162eb57aeb3\"}":{}}},"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 2023-04-05 19:00:39 +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-ft8t2,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-ft8t2,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +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:2023-04-05 19:00:39 +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:2023-04-05 19:00:39 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 19:00:39 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:39.618: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-2891" for this suite. 04/05/23 19:00:39.624 +------------------------------ +• [SLOW TEST] [6.214 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:113 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:33.416 + Apr 5 19:00:33.416: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 19:00:33.417 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:33.439 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:33.443 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:113 + Apr 5 19:00:33.448: INFO: Creating deployment "test-recreate-deployment" + Apr 5 19:00:33.455: INFO: Waiting deployment "test-recreate-deployment" to be updated to revision 1 + Apr 5 19:00:33.461: INFO: deployment "test-recreate-deployment" doesn't have the required revision set + Apr 5 19:00:35.470: INFO: Waiting deployment "test-recreate-deployment" to complete + Apr 5 19:00:35.473: 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(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-recreate-deployment-795566c5cb\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:00:37.479: 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(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 0, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-recreate-deployment-795566c5cb\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:00:39.478: INFO: Triggering a new rollout for deployment "test-recreate-deployment" + Apr 5 19:00:39.487: INFO: Updating deployment test-recreate-deployment + Apr 5 19:00:39.487: 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 + Apr 5 19:00:39.611: INFO: Deployment "test-recreate-deployment": + &Deployment{ObjectMeta:{test-recreate-deployment deployment-2891 c40c9815-20bb-4dcc-b902-328be658a9f4 88655 2 2023-04-05 19:00:33 +0000 UTC map[name:sample-pod-3] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 19:00:39 +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 2023-04-05 19:00:39 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0038baf48 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:2023-04-05 19:00:39 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "test-recreate-deployment-cff6dc657" is progressing.,LastUpdateTime:2023-04-05 19:00:39 +0000 UTC,LastTransitionTime:2023-04-05 19:00:33 +0000 UTC,},},ReadyReplicas:0,CollisionCount:nil,},} + + Apr 5 19:00:39.614: INFO: New ReplicaSet "test-recreate-deployment-cff6dc657" of Deployment "test-recreate-deployment": + &ReplicaSet{ObjectMeta:{test-recreate-deployment-cff6dc657 deployment-2891 aa4f6b53-e15a-4d47-92cc-2162eb57aeb3 88651 1 2023-04-05 19:00:39 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-recreate-deployment c40c9815-20bb-4dcc-b902-328be658a9f4 0xc008e97880 0xc008e97881}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:00:39 +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\":\"c40c9815-20bb-4dcc-b902-328be658a9f4\"}":{}}},"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 2023-04-05 19:00:39 +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: cff6dc657,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc008e97918 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{},},} + Apr 5 19:00:39.614: INFO: All old ReplicaSets of Deployment "test-recreate-deployment": + Apr 5 19:00:39.614: INFO: &ReplicaSet{ObjectMeta:{test-recreate-deployment-795566c5cb deployment-2891 1a374679-3316-4676-b577-1c94b53693f6 88639 2 2023-04-05 19:00:33 +0000 UTC map[name:sample-pod-3 pod-template-hash:795566c5cb] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-recreate-deployment c40c9815-20bb-4dcc-b902-328be658a9f4 0xc008e97767 0xc008e97768}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:00:39 +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\":\"c40c9815-20bb-4dcc-b902-328be658a9f4\"}":{}}},"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 2023-04-05 19:00:39 +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: 795566c5cb,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:795566c5cb] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc008e97818 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{},},} + Apr 5 19:00:39.618: INFO: Pod "test-recreate-deployment-cff6dc657-rzwdl" is not available: + &Pod{ObjectMeta:{test-recreate-deployment-cff6dc657-rzwdl test-recreate-deployment-cff6dc657- deployment-2891 be51d1db-09ed-41ca-a298-05f7146d6559 88654 0 2023-04-05 19:00:39 +0000 UTC map[name:sample-pod-3 pod-template-hash:cff6dc657] map[] [{apps/v1 ReplicaSet test-recreate-deployment-cff6dc657 aa4f6b53-e15a-4d47-92cc-2162eb57aeb3 0xc008e97d90 0xc008e97d91}] [] [{kube-controller-manager Update v1 2023-04-05 19:00:39 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"aa4f6b53-e15a-4d47-92cc-2162eb57aeb3\"}":{}}},"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 2023-04-05 19:00:39 +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-ft8t2,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-ft8t2,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:00:39 +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:2023-04-05 19:00:39 +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:2023-04-05 19:00:39 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:,StartTime:2023-04-05 19:00:39 +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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:39.618: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-2891" for this suite. 04/05/23 19:00:39.624 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:117 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:39.636 +Apr 5 19:00:39.637: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:00:39.637 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:39.654 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:39.657 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:117 +STEP: Creating a pod to test emptydir 0777 on tmpfs 04/05/23 19:00:39.659 +Apr 5 19:00:39.667: INFO: Waiting up to 5m0s for pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2" in namespace "emptydir-2545" to be "Succeeded or Failed" +Apr 5 19:00:39.670: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.141566ms +Apr 5 19:00:41.676: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008215468s +Apr 5 19:00:43.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007895018s +Apr 5 19:00:45.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00789792s +Apr 5 19:00:47.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007704483s +STEP: Saw pod success 04/05/23 19:00:47.675 +Apr 5 19:00:47.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2" satisfied condition "Succeeded or Failed" +Apr 5 19:00:47.678: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 container test-container: +STEP: delete the pod 04/05/23 19:00:47.686 +Apr 5 19:00:47.700: INFO: Waiting for pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 to disappear +Apr 5 19:00:47.703: INFO: Pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:47.703: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-2545" for this suite. 04/05/23 19:00:47.707 +------------------------------ +• [SLOW TEST] [8.077 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:117 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:39.636 + Apr 5 19:00:39.637: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:00:39.637 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:39.654 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:39.657 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:117 + STEP: Creating a pod to test emptydir 0777 on tmpfs 04/05/23 19:00:39.659 + Apr 5 19:00:39.667: INFO: Waiting up to 5m0s for pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2" in namespace "emptydir-2545" to be "Succeeded or Failed" + Apr 5 19:00:39.670: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.141566ms + Apr 5 19:00:41.676: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008215468s + Apr 5 19:00:43.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007895018s + Apr 5 19:00:45.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00789792s + Apr 5 19:00:47.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007704483s + STEP: Saw pod success 04/05/23 19:00:47.675 + Apr 5 19:00:47.675: INFO: Pod "pod-adb55096-27cc-45e3-98bc-0b31707aadf2" satisfied condition "Succeeded or Failed" + Apr 5 19:00:47.678: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 container test-container: + STEP: delete the pod 04/05/23 19:00:47.686 + Apr 5 19:00:47.700: INFO: Waiting for pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 to disappear + Apr 5 19:00:47.703: INFO: Pod pod-adb55096-27cc-45e3-98bc-0b31707aadf2 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:47.703: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-2545" for this suite. 04/05/23 19:00:47.707 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-apps] ReplicaSet + should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/apps/replica_set.go:131 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:47.714 +Apr 5 19:00:47.714: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 19:00:47.715 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:47.733 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:47.736 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/apps/replica_set.go:131 +STEP: Given a Pod with a 'name' label pod-adoption-release is created 04/05/23 19:00:47.74 +Apr 5 19:00:47.748: INFO: Waiting up to 5m0s for pod "pod-adoption-release" in namespace "replicaset-9171" to be "running and ready" +Apr 5 19:00:47.753: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 4.135453ms +Apr 5 19:00:47.753: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:00:49.757: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008329853s +Apr 5 19:00:49.757: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:00:51.758: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00950276s +Apr 5 19:00:51.758: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:00:53.757: INFO: Pod "pod-adoption-release": Phase="Running", Reason="", readiness=true. Elapsed: 6.008071733s +Apr 5 19:00:53.757: INFO: The phase of Pod pod-adoption-release is Running (Ready = true) +Apr 5 19:00:53.757: INFO: Pod "pod-adoption-release" satisfied condition "running and ready" +STEP: When a replicaset with a matching selector is created 04/05/23 19:00:53.76 +STEP: Then the orphan pod is adopted 04/05/23 19:00:53.766 +STEP: When the matched label of one of its pods change 04/05/23 19:00:54.775 +Apr 5 19:00:54.778: INFO: Pod name pod-adoption-release: Found 1 pods out of 1 +STEP: Then the pod is released 04/05/23 19:00:54.789 +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:55.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-9171" for this suite. 04/05/23 19:00:55.804 +------------------------------ +• [SLOW TEST] [8.099 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/apps/replica_set.go:131 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:47.714 + Apr 5 19:00:47.714: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 19:00:47.715 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:47.733 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:47.736 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/apps/replica_set.go:131 + STEP: Given a Pod with a 'name' label pod-adoption-release is created 04/05/23 19:00:47.74 + Apr 5 19:00:47.748: INFO: Waiting up to 5m0s for pod "pod-adoption-release" in namespace "replicaset-9171" to be "running and ready" + Apr 5 19:00:47.753: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 4.135453ms + Apr 5 19:00:47.753: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:00:49.757: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008329853s + Apr 5 19:00:49.757: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:00:51.758: INFO: Pod "pod-adoption-release": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00950276s + Apr 5 19:00:51.758: INFO: The phase of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:00:53.757: INFO: Pod "pod-adoption-release": Phase="Running", Reason="", readiness=true. Elapsed: 6.008071733s + Apr 5 19:00:53.757: INFO: The phase of Pod pod-adoption-release is Running (Ready = true) + Apr 5 19:00:53.757: INFO: Pod "pod-adoption-release" satisfied condition "running and ready" + STEP: When a replicaset with a matching selector is created 04/05/23 19:00:53.76 + STEP: Then the orphan pod is adopted 04/05/23 19:00:53.766 + STEP: When the matched label of one of its pods change 04/05/23 19:00:54.775 + Apr 5 19:00:54.778: INFO: Pod name pod-adoption-release: Found 1 pods out of 1 + STEP: Then the pod is released 04/05/23 19:00:54.789 + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:55.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-9171" for this suite. 04/05/23 19:00:55.804 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[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/node/pods.go:161 +[BeforeEach] [sig-node] Pods Extended + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:55.815 +Apr 5 19:00:55.815: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 19:00:55.816 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:55.835 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:55.838 +[BeforeEach] [sig-node] Pods Extended + test/e2e/framework/metrics/init/init.go:31 +[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/node/pods.go:161 +STEP: creating the pod 04/05/23 19:00:55.842 +STEP: submitting the pod to kubernetes 04/05/23 19:00:55.842 +STEP: verifying QOS class is set on the pod 04/05/23 19:00:55.851 +[AfterEach] [sig-node] Pods Extended + test/e2e/framework/node/init/init.go:32 +Apr 5 19:00:55.854: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods Extended + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods Extended + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods Extended + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-2800" for this suite. 04/05/23 19:00:55.86 +------------------------------ +• [0.056 seconds] +[sig-node] Pods Extended +test/e2e/node/framework.go:23 + Pods Set QOS Class + test/e2e/node/pods.go:150 + should be set on Pods with matching resource requests and limits for memory and cpu [Conformance] + test/e2e/node/pods.go:161 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods Extended + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:55.815 + Apr 5 19:00:55.815: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 19:00:55.816 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:55.835 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:55.838 + [BeforeEach] [sig-node] Pods Extended + test/e2e/framework/metrics/init/init.go:31 + [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/node/pods.go:161 + STEP: creating the pod 04/05/23 19:00:55.842 + STEP: submitting the pod to kubernetes 04/05/23 19:00:55.842 + STEP: verifying QOS class is set on the pod 04/05/23 19:00:55.851 + [AfterEach] [sig-node] Pods Extended + test/e2e/framework/node/init/init.go:32 + Apr 5 19:00:55.854: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods Extended + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods Extended + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods Extended + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-2800" for this suite. 04/05/23 19:00:55.86 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ControllerRevision [Serial] + should manage the lifecycle of a ControllerRevision [Conformance] + test/e2e/apps/controller_revision.go:124 +[BeforeEach] [sig-apps] ControllerRevision [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:00:55.875 +Apr 5 19:00:55.875: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename controllerrevisions 04/05/23 19:00:55.876 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:55.892 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:55.895 +[BeforeEach] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ControllerRevision [Serial] + test/e2e/apps/controller_revision.go:93 +[It] should manage the lifecycle of a ControllerRevision [Conformance] + test/e2e/apps/controller_revision.go:124 +STEP: Creating DaemonSet "e2e-qt5kz-daemon-set" 04/05/23 19:00:55.916 +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 19:00:55.922 +Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:55.932: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:00:55.932: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:56.945: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:00:56.945: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:00:57.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:57.938: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:57.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:57.942: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:00:57.942: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:00:58.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:58.939: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:58.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:58.943: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:00:58.943: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:00:59.945: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:00:59.945: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:00.942: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 2 +Apr 5 19:01:00.942: INFO: Node ttneyla26-md-0-8474989c68-rj4zb is running 0 daemon pod, expected 1 +Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:01:01.943: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 3 +Apr 5 19:01:01.943: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset e2e-qt5kz-daemon-set +STEP: Confirm DaemonSet "e2e-qt5kz-daemon-set" successfully created with "daemonset-name=e2e-qt5kz-daemon-set" label 04/05/23 19:01:01.946 +STEP: Listing all ControllerRevisions with label "daemonset-name=e2e-qt5kz-daemon-set" 04/05/23 19:01:01.956 +Apr 5 19:01:01.960: INFO: Located ControllerRevision: "e2e-qt5kz-daemon-set-7dc6585b6b" +STEP: Patching ControllerRevision "e2e-qt5kz-daemon-set-7dc6585b6b" 04/05/23 19:01:01.964 +Apr 5 19:01:01.970: INFO: e2e-qt5kz-daemon-set-7dc6585b6b has been patched +STEP: Create a new ControllerRevision 04/05/23 19:01:01.97 +Apr 5 19:01:01.976: INFO: Created ControllerRevision: e2e-qt5kz-daemon-set-64748f788d +STEP: Confirm that there are two ControllerRevisions 04/05/23 19:01:01.976 +Apr 5 19:01:01.976: INFO: Requesting list of ControllerRevisions to confirm quantity +Apr 5 19:01:01.980: INFO: Found 2 ControllerRevisions +STEP: Deleting ControllerRevision "e2e-qt5kz-daemon-set-7dc6585b6b" 04/05/23 19:01:01.98 +STEP: Confirm that there is only one ControllerRevision 04/05/23 19:01:01.987 +Apr 5 19:01:01.987: INFO: Requesting list of ControllerRevisions to confirm quantity +Apr 5 19:01:01.990: INFO: Found 1 ControllerRevisions +STEP: Updating ControllerRevision "e2e-qt5kz-daemon-set-64748f788d" 04/05/23 19:01:01.993 +Apr 5 19:01:02.003: INFO: e2e-qt5kz-daemon-set-64748f788d has been updated +STEP: Generate another ControllerRevision by patching the Daemonset 04/05/23 19:01:02.003 +W0405 19:01:02.013975 19 warnings.go:70] unknown field "updateStrategy" +STEP: Confirm that there are two ControllerRevisions 04/05/23 19:01:02.014 +Apr 5 19:01:02.014: INFO: Requesting list of ControllerRevisions to confirm quantity +Apr 5 19:01:03.018: INFO: Requesting list of ControllerRevisions to confirm quantity +Apr 5 19:01:03.022: INFO: Found 2 ControllerRevisions +STEP: Removing a ControllerRevision via 'DeleteCollection' with labelSelector: "e2e-qt5kz-daemon-set-64748f788d=updated" 04/05/23 19:01:03.022 +STEP: Confirm that there is only one ControllerRevision 04/05/23 19:01:03.031 +Apr 5 19:01:03.032: INFO: Requesting list of ControllerRevisions to confirm quantity +Apr 5 19:01:03.035: INFO: Found 1 ControllerRevisions +Apr 5 19:01:03.038: INFO: ControllerRevision "e2e-qt5kz-daemon-set-7ff8475f57" has revision 3 +[AfterEach] [sig-apps] ControllerRevision [Serial] + test/e2e/apps/controller_revision.go:58 +STEP: Deleting DaemonSet "e2e-qt5kz-daemon-set" 04/05/23 19:01:03.042 +STEP: deleting DaemonSet.extensions e2e-qt5kz-daemon-set in namespace controllerrevisions-9040, will wait for the garbage collector to delete the pods 04/05/23 19:01:03.042 +Apr 5 19:01:03.104: INFO: Deleting DaemonSet.extensions e2e-qt5kz-daemon-set took: 8.448251ms +Apr 5 19:01:03.204: INFO: Terminating DaemonSet.extensions e2e-qt5kz-daemon-set pods took: 100.295784ms +Apr 5 19:01:04.309: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 +Apr 5 19:01:04.309: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset e2e-qt5kz-daemon-set +Apr 5 19:01:04.313: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"89056"},"items":null} + +Apr 5 19:01:04.316: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"89056"},"items":null} + +[AfterEach] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:01:04.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "controllerrevisions-9040" for this suite. 04/05/23 19:01:04.338 +------------------------------ +• [SLOW TEST] [8.469 seconds] +[sig-apps] ControllerRevision [Serial] +test/e2e/apps/framework.go:23 + should manage the lifecycle of a ControllerRevision [Conformance] + test/e2e/apps/controller_revision.go:124 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ControllerRevision [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:00:55.875 + Apr 5 19:00:55.875: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename controllerrevisions 04/05/23 19:00:55.876 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:00:55.892 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:00:55.895 + [BeforeEach] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ControllerRevision [Serial] + test/e2e/apps/controller_revision.go:93 + [It] should manage the lifecycle of a ControllerRevision [Conformance] + test/e2e/apps/controller_revision.go:124 + STEP: Creating DaemonSet "e2e-qt5kz-daemon-set" 04/05/23 19:00:55.916 + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 19:00:55.922 + Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:55.929: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:55.932: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:00:55.932: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:56.941: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:56.945: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:00:56.945: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:00:57.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:57.938: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:57.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:57.942: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:00:57.942: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:00:58.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:58.939: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:58.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:58.943: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:00:58.943: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:59.941: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:00:59.945: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:00:59.945: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:00.938: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:00.942: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 2 + Apr 5 19:01:00.942: INFO: Node ttneyla26-md-0-8474989c68-rj4zb is running 0 daemon pod, expected 1 + Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:01.939: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:01:01.943: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 3 + Apr 5 19:01:01.943: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset e2e-qt5kz-daemon-set + STEP: Confirm DaemonSet "e2e-qt5kz-daemon-set" successfully created with "daemonset-name=e2e-qt5kz-daemon-set" label 04/05/23 19:01:01.946 + STEP: Listing all ControllerRevisions with label "daemonset-name=e2e-qt5kz-daemon-set" 04/05/23 19:01:01.956 + Apr 5 19:01:01.960: INFO: Located ControllerRevision: "e2e-qt5kz-daemon-set-7dc6585b6b" + STEP: Patching ControllerRevision "e2e-qt5kz-daemon-set-7dc6585b6b" 04/05/23 19:01:01.964 + Apr 5 19:01:01.970: INFO: e2e-qt5kz-daemon-set-7dc6585b6b has been patched + STEP: Create a new ControllerRevision 04/05/23 19:01:01.97 + Apr 5 19:01:01.976: INFO: Created ControllerRevision: e2e-qt5kz-daemon-set-64748f788d + STEP: Confirm that there are two ControllerRevisions 04/05/23 19:01:01.976 + Apr 5 19:01:01.976: INFO: Requesting list of ControllerRevisions to confirm quantity + Apr 5 19:01:01.980: INFO: Found 2 ControllerRevisions + STEP: Deleting ControllerRevision "e2e-qt5kz-daemon-set-7dc6585b6b" 04/05/23 19:01:01.98 + STEP: Confirm that there is only one ControllerRevision 04/05/23 19:01:01.987 + Apr 5 19:01:01.987: INFO: Requesting list of ControllerRevisions to confirm quantity + Apr 5 19:01:01.990: INFO: Found 1 ControllerRevisions + STEP: Updating ControllerRevision "e2e-qt5kz-daemon-set-64748f788d" 04/05/23 19:01:01.993 + Apr 5 19:01:02.003: INFO: e2e-qt5kz-daemon-set-64748f788d has been updated + STEP: Generate another ControllerRevision by patching the Daemonset 04/05/23 19:01:02.003 + W0405 19:01:02.013975 19 warnings.go:70] unknown field "updateStrategy" + STEP: Confirm that there are two ControllerRevisions 04/05/23 19:01:02.014 + Apr 5 19:01:02.014: INFO: Requesting list of ControllerRevisions to confirm quantity + Apr 5 19:01:03.018: INFO: Requesting list of ControllerRevisions to confirm quantity + Apr 5 19:01:03.022: INFO: Found 2 ControllerRevisions + STEP: Removing a ControllerRevision via 'DeleteCollection' with labelSelector: "e2e-qt5kz-daemon-set-64748f788d=updated" 04/05/23 19:01:03.022 + STEP: Confirm that there is only one ControllerRevision 04/05/23 19:01:03.031 + Apr 5 19:01:03.032: INFO: Requesting list of ControllerRevisions to confirm quantity + Apr 5 19:01:03.035: INFO: Found 1 ControllerRevisions + Apr 5 19:01:03.038: INFO: ControllerRevision "e2e-qt5kz-daemon-set-7ff8475f57" has revision 3 + [AfterEach] [sig-apps] ControllerRevision [Serial] + test/e2e/apps/controller_revision.go:58 + STEP: Deleting DaemonSet "e2e-qt5kz-daemon-set" 04/05/23 19:01:03.042 + STEP: deleting DaemonSet.extensions e2e-qt5kz-daemon-set in namespace controllerrevisions-9040, will wait for the garbage collector to delete the pods 04/05/23 19:01:03.042 + Apr 5 19:01:03.104: INFO: Deleting DaemonSet.extensions e2e-qt5kz-daemon-set took: 8.448251ms + Apr 5 19:01:03.204: INFO: Terminating DaemonSet.extensions e2e-qt5kz-daemon-set pods took: 100.295784ms + Apr 5 19:01:04.309: INFO: Number of nodes with available pods controlled by daemonset e2e-qt5kz-daemon-set: 0 + Apr 5 19:01:04.309: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset e2e-qt5kz-daemon-set + Apr 5 19:01:04.313: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"89056"},"items":null} + + Apr 5 19:01:04.316: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"89056"},"items":null} + + [AfterEach] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:01:04.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ControllerRevision [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "controllerrevisions-9040" for this suite. 04/05/23 19:01:04.338 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] PreStop + should call prestop when killing a pod [Conformance] + test/e2e/node/pre_stop.go:168 +[BeforeEach] [sig-node] PreStop + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:01:04.358 +Apr 5 19:01:04.358: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename prestop 04/05/23 19:01:04.359 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:04.377 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:04.38 +[BeforeEach] [sig-node] PreStop + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] PreStop + test/e2e/node/pre_stop.go:159 +[It] should call prestop when killing a pod [Conformance] + test/e2e/node/pre_stop.go:168 +STEP: Creating server pod server in namespace prestop-841 04/05/23 19:01:04.383 +STEP: Waiting for pods to come up. 04/05/23 19:01:04.393 +Apr 5 19:01:04.393: INFO: Waiting up to 5m0s for pod "server" in namespace "prestop-841" to be "running" +Apr 5 19:01:04.399: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 5.778449ms +Apr 5 19:01:06.403: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010224326s +Apr 5 19:01:08.404: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010861765s +Apr 5 19:01:10.404: INFO: Pod "server": Phase="Running", Reason="", readiness=true. Elapsed: 6.011158576s +Apr 5 19:01:10.404: INFO: Pod "server" satisfied condition "running" +STEP: Creating tester pod tester in namespace prestop-841 04/05/23 19:01:10.408 +Apr 5 19:01:10.414: INFO: Waiting up to 5m0s for pod "tester" in namespace "prestop-841" to be "running" +Apr 5 19:01:10.418: INFO: Pod "tester": Phase="Pending", Reason="", readiness=false. Elapsed: 3.8465ms +Apr 5 19:01:12.424: INFO: Pod "tester": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009649484s +Apr 5 19:01:14.423: INFO: Pod "tester": Phase="Running", Reason="", readiness=true. Elapsed: 4.009250627s +Apr 5 19:01:14.423: INFO: Pod "tester" satisfied condition "running" +STEP: Deleting pre-stop pod 04/05/23 19:01:14.423 +Apr 5 19:01:19.439: 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.", + "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 04/05/23 19:01:19.439 +[AfterEach] [sig-node] PreStop + test/e2e/framework/node/init/init.go:32 +Apr 5 19:01:19.456: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] PreStop + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] PreStop + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] PreStop + tear down framework | framework.go:193 +STEP: Destroying namespace "prestop-841" for this suite. 04/05/23 19:01:19.462 +------------------------------ +• [SLOW TEST] [15.114 seconds] +[sig-node] PreStop +test/e2e/node/framework.go:23 + should call prestop when killing a pod [Conformance] + test/e2e/node/pre_stop.go:168 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] PreStop + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:01:04.358 + Apr 5 19:01:04.358: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename prestop 04/05/23 19:01:04.359 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:04.377 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:04.38 + [BeforeEach] [sig-node] PreStop + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] PreStop + test/e2e/node/pre_stop.go:159 + [It] should call prestop when killing a pod [Conformance] + test/e2e/node/pre_stop.go:168 + STEP: Creating server pod server in namespace prestop-841 04/05/23 19:01:04.383 + STEP: Waiting for pods to come up. 04/05/23 19:01:04.393 + Apr 5 19:01:04.393: INFO: Waiting up to 5m0s for pod "server" in namespace "prestop-841" to be "running" + Apr 5 19:01:04.399: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 5.778449ms + Apr 5 19:01:06.403: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010224326s + Apr 5 19:01:08.404: INFO: Pod "server": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010861765s + Apr 5 19:01:10.404: INFO: Pod "server": Phase="Running", Reason="", readiness=true. Elapsed: 6.011158576s + Apr 5 19:01:10.404: INFO: Pod "server" satisfied condition "running" + STEP: Creating tester pod tester in namespace prestop-841 04/05/23 19:01:10.408 + Apr 5 19:01:10.414: INFO: Waiting up to 5m0s for pod "tester" in namespace "prestop-841" to be "running" + Apr 5 19:01:10.418: INFO: Pod "tester": Phase="Pending", Reason="", readiness=false. Elapsed: 3.8465ms + Apr 5 19:01:12.424: INFO: Pod "tester": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009649484s + Apr 5 19:01:14.423: INFO: Pod "tester": Phase="Running", Reason="", readiness=true. Elapsed: 4.009250627s + Apr 5 19:01:14.423: INFO: Pod "tester" satisfied condition "running" + STEP: Deleting pre-stop pod 04/05/23 19:01:14.423 + Apr 5 19:01:19.439: 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.", + "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 04/05/23 19:01:19.439 + [AfterEach] [sig-node] PreStop + test/e2e/framework/node/init/init.go:32 + Apr 5 19:01:19.456: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] PreStop + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] PreStop + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] PreStop + tear down framework | framework.go:193 + STEP: Destroying namespace "prestop-841" for this suite. 04/05/23 19:01:19.462 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/apps/job.go:426 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:01:19.474 +Apr 5 19:01:19.474: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 19:01:19.475 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:19.501 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:19.507 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/apps/job.go:426 +STEP: Creating a job 04/05/23 19:01:19.51 +STEP: Ensuring job reaches completions 04/05/23 19:01:19.519 +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 19:01:37.523: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-409" for this suite. 04/05/23 19:01:37.532 +------------------------------ +• [SLOW TEST] [18.066 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/apps/job.go:426 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:01:19.474 + Apr 5 19:01:19.474: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 19:01:19.475 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:19.501 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:19.507 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/apps/job.go:426 + STEP: Creating a job 04/05/23 19:01:19.51 + STEP: Ensuring job reaches completions 04/05/23 19:01:19.519 + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 19:01:37.523: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-409" for this suite. 04/05/23 19:01:37.532 + << End Captured GinkgoWriter Output +------------------------------ +[sig-node] Security Context + should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:129 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:01:37.54 +Apr 5 19:01:37.540: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context 04/05/23 19:01:37.541 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:37.559 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:37.562 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[It] should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:129 +STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser 04/05/23 19:01:37.565 +Apr 5 19:01:37.573: INFO: Waiting up to 5m0s for pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299" in namespace "security-context-5122" to be "Succeeded or Failed" +Apr 5 19:01:37.576: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 3.256194ms +Apr 5 19:01:39.581: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008263386s +Apr 5 19:01:41.582: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009770481s +Apr 5 19:01:43.580: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006956341s +Apr 5 19:01:45.583: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010063798s +STEP: Saw pod success 04/05/23 19:01:45.583 +Apr 5 19:01:45.583: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299" satisfied condition "Succeeded or Failed" +Apr 5 19:01:45.587: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 container test-container: +STEP: delete the pod 04/05/23 19:01:45.593 +Apr 5 19:01:45.604: INFO: Waiting for pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 to disappear +Apr 5 19:01:45.607: INFO: Pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 no longer exists +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 19:01:45.607: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-5122" for this suite. 04/05/23 19:01:45.613 +------------------------------ +• [SLOW TEST] [8.079 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/node/security_context.go:129 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:01:37.54 + Apr 5 19:01:37.540: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context 04/05/23 19:01:37.541 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:37.559 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:37.562 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [It] should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:129 + STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser 04/05/23 19:01:37.565 + Apr 5 19:01:37.573: INFO: Waiting up to 5m0s for pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299" in namespace "security-context-5122" to be "Succeeded or Failed" + Apr 5 19:01:37.576: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 3.256194ms + Apr 5 19:01:39.581: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008263386s + Apr 5 19:01:41.582: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009770481s + Apr 5 19:01:43.580: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006956341s + Apr 5 19:01:45.583: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010063798s + STEP: Saw pod success 04/05/23 19:01:45.583 + Apr 5 19:01:45.583: INFO: Pod "security-context-5be1acb7-7dad-4124-b095-416e204a3299" satisfied condition "Succeeded or Failed" + Apr 5 19:01:45.587: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 container test-container: + STEP: delete the pod 04/05/23 19:01:45.593 + Apr 5 19:01:45.604: INFO: Waiting for pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 to disappear + Apr 5 19:01:45.607: INFO: Pod security-context-5be1acb7-7dad-4124-b095-416e204a3299 no longer exists + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 19:01:45.607: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-5122" for this suite. 04/05/23 19:01:45.613 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should honor timeout [Conformance] + test/e2e/apimachinery/webhook.go:381 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:01:45.626 +Apr 5 19:01:45.626: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:01:45.627 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:45.644 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:45.647 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:01:45.663 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:01:46.209 +STEP: Deploying the webhook pod 04/05/23 19:01:46.218 +STEP: Wait for the deployment to be ready 04/05/23 19:01:46.232 +Apr 5 19:01:46.241: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:01:48.253: 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(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:01:50.259: 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(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:01:52.259 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:01:52.283 +Apr 5 19:01:53.283: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should honor timeout [Conformance] + test/e2e/apimachinery/webhook.go:381 +STEP: Setting timeout (1s) shorter than webhook latency (5s) 04/05/23 19:01:53.303 +STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:53.303 +STEP: Request fails when timeout (1s) is shorter than slow webhook latency (5s) 04/05/23 19:01:53.437 +STEP: Having no error when timeout is shorter than webhook latency and failure policy is ignore 04/05/23 19:01:54.49 +STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:54.49 +STEP: Having no error when timeout is longer than webhook latency 04/05/23 19:01:55.525 +STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:55.525 +STEP: Having no error when timeout is empty (defaulted to 10s in v1) 04/05/23 19:02:00.561 +STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:02:00.561 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:02:05.593: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-2361" for this suite. 04/05/23 19:02:05.641 +STEP: Destroying namespace "webhook-2361-markers" for this suite. 04/05/23 19:02:05.65 +------------------------------ +• [SLOW TEST] [20.033 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should honor timeout [Conformance] + test/e2e/apimachinery/webhook.go:381 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:01:45.626 + Apr 5 19:01:45.626: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:01:45.627 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:01:45.644 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:01:45.647 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:01:45.663 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:01:46.209 + STEP: Deploying the webhook pod 04/05/23 19:01:46.218 + STEP: Wait for the deployment to be ready 04/05/23 19:01:46.232 + Apr 5 19:01:46.241: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:01:48.253: 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(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:01:50.259: 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(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 1, 46, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:01:52.259 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:01:52.283 + Apr 5 19:01:53.283: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should honor timeout [Conformance] + test/e2e/apimachinery/webhook.go:381 + STEP: Setting timeout (1s) shorter than webhook latency (5s) 04/05/23 19:01:53.303 + STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:53.303 + STEP: Request fails when timeout (1s) is shorter than slow webhook latency (5s) 04/05/23 19:01:53.437 + STEP: Having no error when timeout is shorter than webhook latency and failure policy is ignore 04/05/23 19:01:54.49 + STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:54.49 + STEP: Having no error when timeout is longer than webhook latency 04/05/23 19:01:55.525 + STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:01:55.525 + STEP: Having no error when timeout is empty (defaulted to 10s in v1) 04/05/23 19:02:00.561 + STEP: Registering slow webhook via the AdmissionRegistration API 04/05/23 19:02:00.561 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:02:05.593: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-2361" for this suite. 04/05/23 19:02:05.641 + STEP: Destroying namespace "webhook-2361-markers" for this suite. 04/05/23 19:02:05.65 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:74 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:02:05.665 +Apr 5 19:02:05.665: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:02:05.666 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:05.689 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:05.694 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:74 +STEP: Creating configMap with name configmap-test-volume-42e45956-fee3-4e06-bc98-85df43ef532d 04/05/23 19:02:05.697 +STEP: Creating a pod to test consume configMaps 04/05/23 19:02:05.703 +Apr 5 19:02:05.716: INFO: Waiting up to 5m0s for pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8" in namespace "configmap-3940" to be "Succeeded or Failed" +Apr 5 19:02:05.720: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.32323ms +Apr 5 19:02:07.724: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008663765s +Apr 5 19:02:09.725: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008971624s +Apr 5 19:02:11.726: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010009737s +Apr 5 19:02:13.727: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010776982s +STEP: Saw pod success 04/05/23 19:02:13.727 +Apr 5 19:02:13.727: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8" satisfied condition "Succeeded or Failed" +Apr 5 19:02:13.731: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 container agnhost-container: +STEP: delete the pod 04/05/23 19:02:13.739 +Apr 5 19:02:13.752: INFO: Waiting for pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 to disappear +Apr 5 19:02:13.755: INFO: Pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:02:13.755: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-3940" for this suite. 04/05/23 19:02:13.761 +------------------------------ +• [SLOW TEST] [8.102 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:74 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:02:05.665 + Apr 5 19:02:05.665: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:02:05.666 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:05.689 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:05.694 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:74 + STEP: Creating configMap with name configmap-test-volume-42e45956-fee3-4e06-bc98-85df43ef532d 04/05/23 19:02:05.697 + STEP: Creating a pod to test consume configMaps 04/05/23 19:02:05.703 + Apr 5 19:02:05.716: INFO: Waiting up to 5m0s for pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8" in namespace "configmap-3940" to be "Succeeded or Failed" + Apr 5 19:02:05.720: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.32323ms + Apr 5 19:02:07.724: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008663765s + Apr 5 19:02:09.725: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008971624s + Apr 5 19:02:11.726: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010009737s + Apr 5 19:02:13.727: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010776982s + STEP: Saw pod success 04/05/23 19:02:13.727 + Apr 5 19:02:13.727: INFO: Pod "pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8" satisfied condition "Succeeded or Failed" + Apr 5 19:02:13.731: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 container agnhost-container: + STEP: delete the pod 04/05/23 19:02:13.739 + Apr 5 19:02:13.752: INFO: Waiting for pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 to disappear + Apr 5 19:02:13.755: INFO: Pod pod-configmaps-39ac057b-4e4c-4a81-b41a-ea5204720fa8 no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:02:13.755: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-3940" for this suite. 04/05/23 19:02:13.761 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:92 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:02:13.77 +Apr 5 19:02:13.770: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:02:13.77 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:13.788 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:13.791 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:92 +STEP: Creating a pod to test substitution in container's args 04/05/23 19:02:13.794 +Apr 5 19:02:13.803: INFO: Waiting up to 5m0s for pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253" in namespace "var-expansion-2072" to be "Succeeded or Failed" +Apr 5 19:02:13.806: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 3.47121ms +Apr 5 19:02:15.811: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008560144s +Apr 5 19:02:17.812: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009485856s +Apr 5 19:02:19.810: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007854447s +Apr 5 19:02:21.813: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010141663s +STEP: Saw pod success 04/05/23 19:02:21.813 +Apr 5 19:02:21.813: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253" satisfied condition "Succeeded or Failed" +Apr 5 19:02:21.819: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 container dapi-container: +STEP: delete the pod 04/05/23 19:02:21.826 +Apr 5 19:02:21.838: INFO: Waiting for pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 to disappear +Apr 5 19:02:21.842: INFO: Pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:02:21.842: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-2072" for this suite. 04/05/23 19:02:21.847 +------------------------------ +• [SLOW TEST] [8.083 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/common/node/expansion.go:92 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:02:13.77 + Apr 5 19:02:13.770: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:02:13.77 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:13.788 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:13.791 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:92 + STEP: Creating a pod to test substitution in container's args 04/05/23 19:02:13.794 + Apr 5 19:02:13.803: INFO: Waiting up to 5m0s for pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253" in namespace "var-expansion-2072" to be "Succeeded or Failed" + Apr 5 19:02:13.806: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 3.47121ms + Apr 5 19:02:15.811: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008560144s + Apr 5 19:02:17.812: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009485856s + Apr 5 19:02:19.810: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007854447s + Apr 5 19:02:21.813: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010141663s + STEP: Saw pod success 04/05/23 19:02:21.813 + Apr 5 19:02:21.813: INFO: Pod "var-expansion-5692a093-11c2-4c9f-af48-497f11c10253" satisfied condition "Succeeded or Failed" + Apr 5 19:02:21.819: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 container dapi-container: + STEP: delete the pod 04/05/23 19:02:21.826 + Apr 5 19:02:21.838: INFO: Waiting for pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 to disappear + Apr 5 19:02:21.842: INFO: Pod var-expansion-5692a093-11c2-4c9f-af48-497f11c10253 no longer exists + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:02:21.842: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-2072" for this suite. 04/05/23 19:02:21.847 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-node] Probing container + should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:135 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:02:21.858 +Apr 5 19:02:21.858: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 19:02:21.859 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:21.877 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:21.88 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:135 +STEP: Creating pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 in namespace container-probe-3904 04/05/23 19:02:21.883 +Apr 5 19:02:21.891: INFO: Waiting up to 5m0s for pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005" in namespace "container-probe-3904" to be "not pending" +Apr 5 19:02:21.894: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 3.223743ms +Apr 5 19:02:23.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008426348s +Apr 5 19:02:25.900: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009593443s +Apr 5 19:02:27.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Running", Reason="", readiness=true. Elapsed: 6.008264632s +Apr 5 19:02:27.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005" satisfied condition "not pending" +Apr 5 19:02:27.899: INFO: Started pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 in namespace container-probe-3904 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:02:27.899 +Apr 5 19:02:27.903: INFO: Initial restart count of pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 is 0 +Apr 5 19:03:14.023: INFO: Restart count of pod container-probe-3904/busybox-f413668b-9b8e-4d75-afad-bee50f913005 is now 1 (46.120519671s elapsed) +STEP: deleting the pod 04/05/23 19:03:14.024 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:14.039: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-3904" for this suite. 04/05/23 19:03:14.045 +------------------------------ +• [SLOW TEST] [52.193 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/common/node/container_probe.go:135 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:02:21.858 + Apr 5 19:02:21.858: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 19:02:21.859 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:02:21.877 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:02:21.88 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:135 + STEP: Creating pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 in namespace container-probe-3904 04/05/23 19:02:21.883 + Apr 5 19:02:21.891: INFO: Waiting up to 5m0s for pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005" in namespace "container-probe-3904" to be "not pending" + Apr 5 19:02:21.894: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 3.223743ms + Apr 5 19:02:23.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008426348s + Apr 5 19:02:25.900: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009593443s + Apr 5 19:02:27.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005": Phase="Running", Reason="", readiness=true. Elapsed: 6.008264632s + Apr 5 19:02:27.899: INFO: Pod "busybox-f413668b-9b8e-4d75-afad-bee50f913005" satisfied condition "not pending" + Apr 5 19:02:27.899: INFO: Started pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 in namespace container-probe-3904 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:02:27.899 + Apr 5 19:02:27.903: INFO: Initial restart count of pod busybox-f413668b-9b8e-4d75-afad-bee50f913005 is 0 + Apr 5 19:03:14.023: INFO: Restart count of pod container-probe-3904/busybox-f413668b-9b8e-4d75-afad-bee50f913005 is now 1 (46.120519671s elapsed) + STEP: deleting the pod 04/05/23 19:03:14.024 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:14.039: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-3904" for this suite. 04/05/23 19:03:14.045 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-network] Services + should delete a collection of services [Conformance] + test/e2e/network/service.go:3654 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:14.052 +Apr 5 19:03:14.052: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:03:14.054 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:14.077 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:14.08 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should delete a collection of services [Conformance] + test/e2e/network/service.go:3654 +STEP: creating a collection of services 04/05/23 19:03:14.082 +Apr 5 19:03:14.083: INFO: Creating e2e-svc-a-9pwjr +Apr 5 19:03:14.103: INFO: Creating e2e-svc-b-wr9f9 +Apr 5 19:03:14.121: INFO: Creating e2e-svc-c-hr5j9 +STEP: deleting service collection 04/05/23 19:03:14.139 +Apr 5 19:03:14.190: INFO: Collection of services has been deleted +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:14.190: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-2179" for this suite. 04/05/23 19:03:14.197 +------------------------------ +• [0.154 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should delete a collection of services [Conformance] + test/e2e/network/service.go:3654 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:14.052 + Apr 5 19:03:14.052: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:03:14.054 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:14.077 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:14.08 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should delete a collection of services [Conformance] + test/e2e/network/service.go:3654 + STEP: creating a collection of services 04/05/23 19:03:14.082 + Apr 5 19:03:14.083: INFO: Creating e2e-svc-a-9pwjr + Apr 5 19:03:14.103: INFO: Creating e2e-svc-b-wr9f9 + Apr 5 19:03:14.121: INFO: Creating e2e-svc-c-hr5j9 + STEP: deleting service collection 04/05/23 19:03:14.139 + Apr 5 19:03:14.190: INFO: Collection of services has been deleted + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:14.190: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-2179" for this suite. 04/05/23 19:03:14.197 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:57 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:14.218 +Apr 5 19:03:14.218: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:03:14.219 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:14.237 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:14.24 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:57 +STEP: Creating configMap with name configmap-test-volume-8d794d5c-f1fa-4690-8e5d-1732ea5deb64 04/05/23 19:03:14.243 +STEP: Creating a pod to test consume configMaps 04/05/23 19:03:14.249 +Apr 5 19:03:14.257: INFO: Waiting up to 5m0s for pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc" in namespace "configmap-4551" to be "Succeeded or Failed" +Apr 5 19:03:14.262: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 5.10001ms +Apr 5 19:03:16.269: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012322984s +Apr 5 19:03:18.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010898062s +Apr 5 19:03:20.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011411735s +Apr 5 19:03:22.267: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010428841s +STEP: Saw pod success 04/05/23 19:03:22.267 +Apr 5 19:03:22.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc" satisfied condition "Succeeded or Failed" +Apr 5 19:03:22.272: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc container agnhost-container: +STEP: delete the pod 04/05/23 19:03:22.28 +Apr 5 19:03:22.295: INFO: Waiting for pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc to disappear +Apr 5 19:03:22.298: INFO: Pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:22.299: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-4551" for this suite. 04/05/23 19:03:22.304 +------------------------------ +• [SLOW TEST] [8.093 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:57 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:14.218 + Apr 5 19:03:14.218: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:03:14.219 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:14.237 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:14.24 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:57 + STEP: Creating configMap with name configmap-test-volume-8d794d5c-f1fa-4690-8e5d-1732ea5deb64 04/05/23 19:03:14.243 + STEP: Creating a pod to test consume configMaps 04/05/23 19:03:14.249 + Apr 5 19:03:14.257: INFO: Waiting up to 5m0s for pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc" in namespace "configmap-4551" to be "Succeeded or Failed" + Apr 5 19:03:14.262: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 5.10001ms + Apr 5 19:03:16.269: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012322984s + Apr 5 19:03:18.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010898062s + Apr 5 19:03:20.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011411735s + Apr 5 19:03:22.267: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010428841s + STEP: Saw pod success 04/05/23 19:03:22.267 + Apr 5 19:03:22.268: INFO: Pod "pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc" satisfied condition "Succeeded or Failed" + Apr 5 19:03:22.272: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc container agnhost-container: + STEP: delete the pod 04/05/23 19:03:22.28 + Apr 5 19:03:22.295: INFO: Waiting for pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc to disappear + Apr 5 19:03:22.298: INFO: Pod pod-configmaps-fc859548-f6e3-461b-84fc-7845b64ddbcc no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:22.299: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-4551" for this suite. 04/05/23 19:03:22.304 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:44 +[BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:22.315 +Apr 5 19:03:22.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:03:22.316 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:22.333 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:22.335 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 +[It] should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:44 +STEP: Creating a pod to test downward api env vars 04/05/23 19:03:22.338 +Apr 5 19:03:22.347: INFO: Waiting up to 5m0s for pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06" in namespace "downward-api-297" to be "Succeeded or Failed" +Apr 5 19:03:22.350: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 2.640398ms +Apr 5 19:03:24.354: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007119837s +Apr 5 19:03:26.357: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009532538s +Apr 5 19:03:28.357: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009155392s +Apr 5 19:03:30.355: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007483434s +STEP: Saw pod success 04/05/23 19:03:30.355 +Apr 5 19:03:30.355: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06" satisfied condition "Succeeded or Failed" +Apr 5 19:03:30.359: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 container dapi-container: +STEP: delete the pod 04/05/23 19:03:30.369 +Apr 5 19:03:30.381: INFO: Waiting for pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 to disappear +Apr 5 19:03:30.385: INFO: Pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:30.385: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-297" for this suite. 04/05/23 19:03:30.391 +------------------------------ +• [SLOW TEST] [8.082 seconds] +[sig-node] Downward API +test/e2e/common/node/framework.go:23 + should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:44 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:22.315 + Apr 5 19:03:22.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:03:22.316 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:22.333 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:22.335 + [BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 + [It] should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:44 + STEP: Creating a pod to test downward api env vars 04/05/23 19:03:22.338 + Apr 5 19:03:22.347: INFO: Waiting up to 5m0s for pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06" in namespace "downward-api-297" to be "Succeeded or Failed" + Apr 5 19:03:22.350: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 2.640398ms + Apr 5 19:03:24.354: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007119837s + Apr 5 19:03:26.357: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009532538s + Apr 5 19:03:28.357: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009155392s + Apr 5 19:03:30.355: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007483434s + STEP: Saw pod success 04/05/23 19:03:30.355 + Apr 5 19:03:30.355: INFO: Pod "downward-api-06e575c7-2725-447b-a819-9af00ba3fc06" satisfied condition "Succeeded or Failed" + Apr 5 19:03:30.359: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 container dapi-container: + STEP: delete the pod 04/05/23 19:03:30.369 + Apr 5 19:03:30.381: INFO: Waiting for pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 to disappear + Apr 5 19:03:30.385: INFO: Pod downward-api-06e575c7-2725-447b-a819-9af00ba3fc06 no longer exists + [AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:30.385: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-297" for this suite. 04/05/23 19:03:30.391 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-cli] Kubectl client Kubectl replace + should update a single-container pod's image [Conformance] + test/e2e/kubectl/kubectl.go:1747 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:30.399 +Apr 5 19:03:30.399: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:03:30.4 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:30.417 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:30.42 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1734 +[It] should update a single-container pod's image [Conformance] + test/e2e/kubectl/kubectl.go:1747 +STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 19:03:30.423 +Apr 5 19:03:30.423: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 run e2e-test-httpd-pod --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' +Apr 5 19:03:30.523: INFO: stderr: "" +Apr 5 19:03:30.524: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: verifying the pod e2e-test-httpd-pod is running 04/05/23 19:03:30.524 +STEP: verifying the pod e2e-test-httpd-pod was created 04/05/23 19:03:35.576 +Apr 5 19:03:35.576: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 get pod e2e-test-httpd-pod -o json' +Apr 5 19:03:35.669: INFO: stderr: "" +Apr 5 19:03:35.669: INFO: stdout: "{\n \"apiVersion\": \"v1\",\n \"kind\": \"Pod\",\n \"metadata\": {\n \"creationTimestamp\": \"2023-04-05T19:03:30Z\",\n \"labels\": {\n \"run\": \"e2e-test-httpd-pod\"\n },\n \"name\": \"e2e-test-httpd-pod\",\n \"namespace\": \"kubectl-7290\",\n \"resourceVersion\": \"90820\",\n \"uid\": \"d625426f-9ae7-4394-91b1-adfedf8d2b81\"\n },\n \"spec\": {\n \"containers\": [\n {\n \"image\": \"registry.k8s.io/e2e-test-images/httpd:2.4.38-4\",\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-jtcxc\",\n \"readOnly\": true\n }\n ]\n }\n ],\n \"dnsPolicy\": \"ClusterFirst\",\n \"enableServiceLinks\": true,\n \"nodeName\": \"ttneyla26-md-0-8474989c68-rj4zb\",\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-jtcxc\",\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\": \"2023-04-05T19:03:30Z\",\n \"status\": \"True\",\n \"type\": \"Initialized\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:34Z\",\n \"status\": \"True\",\n \"type\": \"Ready\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:34Z\",\n \"status\": \"True\",\n \"type\": \"ContainersReady\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:30Z\",\n \"status\": \"True\",\n \"type\": \"PodScheduled\"\n }\n ],\n \"containerStatuses\": [\n {\n \"containerID\": \"containerd://55a2e4c705146d178099e209889edd3c7816d92935ea114885a65f17922cbf75\",\n \"image\": \"registry.k8s.io/e2e-test-images/httpd:2.4.38-4\",\n \"imageID\": \"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22\",\n \"lastState\": {},\n \"name\": \"e2e-test-httpd-pod\",\n \"ready\": true,\n \"restartCount\": 0,\n \"started\": true,\n \"state\": {\n \"running\": {\n \"startedAt\": \"2023-04-05T19:03:34Z\"\n }\n }\n }\n ],\n \"hostIP\": \"195.17.150.192\",\n \"phase\": \"Running\",\n \"podIP\": \"192.168.3.210\",\n \"podIPs\": [\n {\n \"ip\": \"192.168.3.210\"\n }\n ],\n \"qosClass\": \"BestEffort\",\n \"startTime\": \"2023-04-05T19:03:30Z\"\n }\n}\n" +STEP: replace the image in the pod 04/05/23 19:03:35.669 +Apr 5 19:03:35.670: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 replace -f -' +Apr 5 19:03:37.838: INFO: stderr: "" +Apr 5 19:03:37.838: INFO: stdout: "pod/e2e-test-httpd-pod replaced\n" +STEP: verifying the pod e2e-test-httpd-pod has the right image registry.k8s.io/e2e-test-images/busybox:1.29-4 04/05/23 19:03:37.838 +[AfterEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1738 +Apr 5 19:03:37.843: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 delete pods e2e-test-httpd-pod' +Apr 5 19:03:39.750: INFO: stderr: "" +Apr 5 19:03:39.750: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:39.750: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-7290" for this suite. 04/05/23 19:03:39.756 +------------------------------ +• [SLOW TEST] [9.363 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl replace + test/e2e/kubectl/kubectl.go:1731 + should update a single-container pod's image [Conformance] + test/e2e/kubectl/kubectl.go:1747 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:30.399 + Apr 5 19:03:30.399: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:03:30.4 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:30.417 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:30.42 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1734 + [It] should update a single-container pod's image [Conformance] + test/e2e/kubectl/kubectl.go:1747 + STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 19:03:30.423 + Apr 5 19:03:30.423: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 run e2e-test-httpd-pod --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' + Apr 5 19:03:30.523: INFO: stderr: "" + Apr 5 19:03:30.524: INFO: stdout: "pod/e2e-test-httpd-pod created\n" + STEP: verifying the pod e2e-test-httpd-pod is running 04/05/23 19:03:30.524 + STEP: verifying the pod e2e-test-httpd-pod was created 04/05/23 19:03:35.576 + Apr 5 19:03:35.576: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 get pod e2e-test-httpd-pod -o json' + Apr 5 19:03:35.669: INFO: stderr: "" + Apr 5 19:03:35.669: INFO: stdout: "{\n \"apiVersion\": \"v1\",\n \"kind\": \"Pod\",\n \"metadata\": {\n \"creationTimestamp\": \"2023-04-05T19:03:30Z\",\n \"labels\": {\n \"run\": \"e2e-test-httpd-pod\"\n },\n \"name\": \"e2e-test-httpd-pod\",\n \"namespace\": \"kubectl-7290\",\n \"resourceVersion\": \"90820\",\n \"uid\": \"d625426f-9ae7-4394-91b1-adfedf8d2b81\"\n },\n \"spec\": {\n \"containers\": [\n {\n \"image\": \"registry.k8s.io/e2e-test-images/httpd:2.4.38-4\",\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-jtcxc\",\n \"readOnly\": true\n }\n ]\n }\n ],\n \"dnsPolicy\": \"ClusterFirst\",\n \"enableServiceLinks\": true,\n \"nodeName\": \"ttneyla26-md-0-8474989c68-rj4zb\",\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-jtcxc\",\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\": \"2023-04-05T19:03:30Z\",\n \"status\": \"True\",\n \"type\": \"Initialized\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:34Z\",\n \"status\": \"True\",\n \"type\": \"Ready\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:34Z\",\n \"status\": \"True\",\n \"type\": \"ContainersReady\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2023-04-05T19:03:30Z\",\n \"status\": \"True\",\n \"type\": \"PodScheduled\"\n }\n ],\n \"containerStatuses\": [\n {\n \"containerID\": \"containerd://55a2e4c705146d178099e209889edd3c7816d92935ea114885a65f17922cbf75\",\n \"image\": \"registry.k8s.io/e2e-test-images/httpd:2.4.38-4\",\n \"imageID\": \"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22\",\n \"lastState\": {},\n \"name\": \"e2e-test-httpd-pod\",\n \"ready\": true,\n \"restartCount\": 0,\n \"started\": true,\n \"state\": {\n \"running\": {\n \"startedAt\": \"2023-04-05T19:03:34Z\"\n }\n }\n }\n ],\n \"hostIP\": \"195.17.150.192\",\n \"phase\": \"Running\",\n \"podIP\": \"192.168.3.210\",\n \"podIPs\": [\n {\n \"ip\": \"192.168.3.210\"\n }\n ],\n \"qosClass\": \"BestEffort\",\n \"startTime\": \"2023-04-05T19:03:30Z\"\n }\n}\n" + STEP: replace the image in the pod 04/05/23 19:03:35.669 + Apr 5 19:03:35.670: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 replace -f -' + Apr 5 19:03:37.838: INFO: stderr: "" + Apr 5 19:03:37.838: INFO: stdout: "pod/e2e-test-httpd-pod replaced\n" + STEP: verifying the pod e2e-test-httpd-pod has the right image registry.k8s.io/e2e-test-images/busybox:1.29-4 04/05/23 19:03:37.838 + [AfterEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1738 + Apr 5 19:03:37.843: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7290 delete pods e2e-test-httpd-pod' + Apr 5 19:03:39.750: INFO: stderr: "" + Apr 5 19:03:39.750: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:39.750: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-7290" for this suite. 04/05/23 19:03:39.756 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should run through a ConfigMap lifecycle [Conformance] + test/e2e/common/node/configmap.go:169 +[BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:39.766 +Apr 5 19:03:39.767: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:03:39.768 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.785 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.789 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should run through a ConfigMap lifecycle [Conformance] + test/e2e/common/node/configmap.go:169 +STEP: creating a ConfigMap 04/05/23 19:03:39.793 +STEP: fetching the ConfigMap 04/05/23 19:03:39.799 +STEP: patching the ConfigMap 04/05/23 19:03:39.802 +STEP: listing all ConfigMaps in all namespaces with a label selector 04/05/23 19:03:39.81 +STEP: deleting the ConfigMap by collection with a label selector 04/05/23 19:03:39.817 +STEP: listing all ConfigMaps in test namespace 04/05/23 19:03:39.826 +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:39.829: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-5885" for this suite. 04/05/23 19:03:39.835 +------------------------------ +• [0.075 seconds] +[sig-node] ConfigMap +test/e2e/common/node/framework.go:23 + should run through a ConfigMap lifecycle [Conformance] + test/e2e/common/node/configmap.go:169 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:39.766 + Apr 5 19:03:39.767: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:03:39.768 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.785 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.789 + [BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should run through a ConfigMap lifecycle [Conformance] + test/e2e/common/node/configmap.go:169 + STEP: creating a ConfigMap 04/05/23 19:03:39.793 + STEP: fetching the ConfigMap 04/05/23 19:03:39.799 + STEP: patching the ConfigMap 04/05/23 19:03:39.802 + STEP: listing all ConfigMaps in all namespaces with a label selector 04/05/23 19:03:39.81 + STEP: deleting the ConfigMap by collection with a label selector 04/05/23 19:03:39.817 + STEP: listing all ConfigMaps in test namespace 04/05/23 19:03:39.826 + [AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:39.829: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-5885" for this suite. 04/05/23 19:03:39.835 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should apply changes to a namespace status [Conformance] + test/e2e/apimachinery/namespace.go:299 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:39.848 +Apr 5 19:03:39.848: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 19:03:39.849 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.867 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.871 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should apply changes to a namespace status [Conformance] + test/e2e/apimachinery/namespace.go:299 +STEP: Read namespace status 04/05/23 19:03:39.874 +Apr 5 19:03:39.878: INFO: Status: v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)} +STEP: Patch namespace status 04/05/23 19:03:39.878 +Apr 5 19:03:39.885: INFO: Status.Condition: v1.NamespaceCondition{Type:"StatusPatch", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Patched by an e2e test"} +STEP: Update namespace status 04/05/23 19:03:39.885 +Apr 5 19:03:39.896: INFO: Status.Condition: v1.NamespaceCondition{Type:"StatusUpdate", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Updated by an e2e test"} +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:39.897: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-5918" for this suite. 04/05/23 19:03:39.903 +------------------------------ +• [0.063 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should apply changes to a namespace status [Conformance] + test/e2e/apimachinery/namespace.go:299 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:39.848 + Apr 5 19:03:39.848: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 19:03:39.849 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.867 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.871 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should apply changes to a namespace status [Conformance] + test/e2e/apimachinery/namespace.go:299 + STEP: Read namespace status 04/05/23 19:03:39.874 + Apr 5 19:03:39.878: INFO: Status: v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)} + STEP: Patch namespace status 04/05/23 19:03:39.878 + Apr 5 19:03:39.885: INFO: Status.Condition: v1.NamespaceCondition{Type:"StatusPatch", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Patched by an e2e test"} + STEP: Update namespace status 04/05/23 19:03:39.885 + Apr 5 19:03:39.896: INFO: Status.Condition: v1.NamespaceCondition{Type:"StatusUpdate", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Updated by an e2e test"} + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:39.897: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-5918" for this suite. 04/05/23 19:03:39.903 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of different groups [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:276 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:39.918 +Apr 5 19:03:39.919: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:03:39.921 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.939 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.942 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for multiple CRDs of different groups [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:276 +STEP: CRs in different groups (two CRDs) show up in OpenAPI documentation 04/05/23 19:03:39.945 +Apr 5 19:03:39.946: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:03:43.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:03:57.218: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-9691" for this suite. 04/05/23 19:03:57.232 +------------------------------ +• [SLOW TEST] [17.323 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for multiple CRDs of different groups [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:276 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:39.918 + Apr 5 19:03:39.919: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:03:39.921 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:39.939 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:39.942 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for multiple CRDs of different groups [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:276 + STEP: CRs in different groups (two CRDs) show up in OpenAPI documentation 04/05/23 19:03:39.945 + Apr 5 19:03:39.946: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:03:43.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:03:57.218: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-9691" for this suite. 04/05/23 19:03:57.232 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context When creating a pod with privileged + should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:528 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:03:57.252 +Apr 5 19:03:57.253: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context-test 04/05/23 19:03:57.254 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:57.269 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:57.272 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 +[It] should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:528 +Apr 5 19:03:57.285: INFO: Waiting up to 5m0s for pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806" in namespace "security-context-test-7829" to be "Succeeded or Failed" +Apr 5 19:03:57.289: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 3.63512ms +Apr 5 19:03:59.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008828148s +Apr 5 19:04:01.296: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010718937s +Apr 5 19:04:03.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009214728s +Apr 5 19:04:05.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008769766s +Apr 5 19:04:05.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806" satisfied condition "Succeeded or Failed" +Apr 5 19:04:05.309: INFO: Got logs for pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": "ip: RTNETLINK answers: Operation not permitted\n" +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:05.310: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-test-7829" for this suite. 04/05/23 19:04:05.316 +------------------------------ +• [SLOW TEST] [8.070 seconds] +[sig-node] Security Context +test/e2e/common/node/framework.go:23 + When creating a pod with privileged + test/e2e/common/node/security_context.go:491 + should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:528 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:03:57.252 + Apr 5 19:03:57.253: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context-test 04/05/23 19:03:57.254 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:03:57.269 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:03:57.272 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 + [It] should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:528 + Apr 5 19:03:57.285: INFO: Waiting up to 5m0s for pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806" in namespace "security-context-test-7829" to be "Succeeded or Failed" + Apr 5 19:03:57.289: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 3.63512ms + Apr 5 19:03:59.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008828148s + Apr 5 19:04:01.296: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010718937s + Apr 5 19:04:03.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009214728s + Apr 5 19:04:05.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008769766s + Apr 5 19:04:05.294: INFO: Pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806" satisfied condition "Succeeded or Failed" + Apr 5 19:04:05.309: INFO: Got logs for pod "busybox-privileged-false-475f6708-5ceb-43d7-b085-889f6740a806": "ip: RTNETLINK answers: Operation not permitted\n" + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:05.310: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-test-7829" for this suite. 04/05/23 19:04:05.316 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:207 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:05.326 +Apr 5 19:04:05.326: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:04:05.327 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:05.341 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:05.345 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:207 +STEP: Creating a pod to test emptydir 0666 on node default medium 04/05/23 19:04:05.348 +Apr 5 19:04:05.360: INFO: Waiting up to 5m0s for pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9" in namespace "emptydir-1819" to be "Succeeded or Failed" +Apr 5 19:04:05.364: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 3.519293ms +Apr 5 19:04:07.369: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009032859s +Apr 5 19:04:09.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007641708s +Apr 5 19:04:11.367: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007151557s +Apr 5 19:04:13.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007986594s +STEP: Saw pod success 04/05/23 19:04:13.368 +Apr 5 19:04:13.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9" satisfied condition "Succeeded or Failed" +Apr 5 19:04:13.372: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 container test-container: +STEP: delete the pod 04/05/23 19:04:13.381 +Apr 5 19:04:13.394: INFO: Waiting for pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 to disappear +Apr 5 19:04:13.397: INFO: Pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:13.397: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-1819" for this suite. 04/05/23 19:04:13.405 +------------------------------ +• [SLOW TEST] [8.085 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:207 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:05.326 + Apr 5 19:04:05.326: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:04:05.327 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:05.341 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:05.345 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:207 + STEP: Creating a pod to test emptydir 0666 on node default medium 04/05/23 19:04:05.348 + Apr 5 19:04:05.360: INFO: Waiting up to 5m0s for pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9" in namespace "emptydir-1819" to be "Succeeded or Failed" + Apr 5 19:04:05.364: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 3.519293ms + Apr 5 19:04:07.369: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009032859s + Apr 5 19:04:09.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007641708s + Apr 5 19:04:11.367: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007151557s + Apr 5 19:04:13.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007986594s + STEP: Saw pod success 04/05/23 19:04:13.368 + Apr 5 19:04:13.368: INFO: Pod "pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9" satisfied condition "Succeeded or Failed" + Apr 5 19:04:13.372: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 container test-container: + STEP: delete the pod 04/05/23 19:04:13.381 + Apr 5 19:04:13.394: INFO: Waiting for pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 to disappear + Apr 5 19:04:13.397: INFO: Pod pod-d442743c-78e7-4667-b8b9-1b4f7d0388d9 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:13.397: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-1819" for this suite. 04/05/23 19:04:13.405 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] + test/e2e/apimachinery/webhook.go:277 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:13.415 +Apr 5 19:04:13.415: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:04:13.416 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:13.431 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:13.434 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:04:13.45 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:04:13.695 +STEP: Deploying the webhook pod 04/05/23 19:04:13.705 +STEP: Wait for the deployment to be ready 04/05/23 19:04:13.718 +Apr 5 19:04:13.728: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:04:15.741: 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(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:04:17.747: 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(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:04:19.746 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:04:19.764 +Apr 5 19:04:20.765: 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/apimachinery/webhook.go:277 +STEP: Registering a validating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API 04/05/23 19:04:20.769 +STEP: Registering a mutating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API 04/05/23 19:04:20.785 +STEP: Creating a dummy validating-webhook-configuration object 04/05/23 19:04:20.799 +STEP: Deleting the validating-webhook-configuration, which should be possible to remove 04/05/23 19:04:20.809 +STEP: Creating a dummy mutating-webhook-configuration object 04/05/23 19:04:20.815 +STEP: Deleting the mutating-webhook-configuration, which should be possible to remove 04/05/23 19:04:20.825 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:20.843: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-162" for this suite. 04/05/23 19:04:21.022 +STEP: Destroying namespace "webhook-162-markers" for this suite. 04/05/23 19:04:21.04 +------------------------------ +• [SLOW TEST] [7.653 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/apimachinery/webhook.go:277 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:13.415 + Apr 5 19:04:13.415: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:04:13.416 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:13.431 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:13.434 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:04:13.45 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:04:13.695 + STEP: Deploying the webhook pod 04/05/23 19:04:13.705 + STEP: Wait for the deployment to be ready 04/05/23 19:04:13.718 + Apr 5 19:04:13.728: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:04:15.741: 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(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:04:17.747: 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(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 4, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:04:19.746 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:04:19.764 + Apr 5 19:04:20.765: 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/apimachinery/webhook.go:277 + STEP: Registering a validating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API 04/05/23 19:04:20.769 + STEP: Registering a mutating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API 04/05/23 19:04:20.785 + STEP: Creating a dummy validating-webhook-configuration object 04/05/23 19:04:20.799 + STEP: Deleting the validating-webhook-configuration, which should be possible to remove 04/05/23 19:04:20.809 + STEP: Creating a dummy mutating-webhook-configuration object 04/05/23 19:04:20.815 + STEP: Deleting the mutating-webhook-configuration, which should be possible to remove 04/05/23 19:04:20.825 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:20.843: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-162" for this suite. 04/05/23 19:04:21.022 + STEP: Destroying namespace "webhook-162-markers" for this suite. 04/05/23 19:04:21.04 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should run and stop complex daemon [Conformance] + test/e2e/apps/daemon_set.go:194 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:21.07 +Apr 5 19:04:21.070: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 19:04:21.072 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:21.113 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:21.118 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should run and stop complex daemon [Conformance] + test/e2e/apps/daemon_set.go:194 +Apr 5 19:04:21.152: INFO: Creating daemon "daemon-set" with a node selector +STEP: Initially, daemon pods should not be running on any nodes. 04/05/23 19:04:21.159 +Apr 5 19:04:21.168: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:21.168: 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. 04/05/23 19:04:21.168 +Apr 5 19:04:21.196: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:21.196: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:22.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:22.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:23.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:23.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:24.205: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:24.205: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:25.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:25.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:26.203: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Apr 5 19:04:26.203: 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 04/05/23 19:04:26.206 +Apr 5 19:04:26.231: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Apr 5 19:04:26.231: INFO: Number of running nodes: 0, number of available pods: 1 in daemonset daemon-set +Apr 5 19:04:27.236: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:27.236: 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 04/05/23 19:04:27.236 +Apr 5 19:04:27.250: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:27.250: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:28.256: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:28.256: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:29.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:29.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:30.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:30.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:31.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:31.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:32.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:32.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:04:33.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Apr 5 19:04:33.255: 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:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 19:04:33.262 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-288, will wait for the garbage collector to delete the pods 04/05/23 19:04:33.262 +Apr 5 19:04:33.327: INFO: Deleting DaemonSet.extensions daemon-set took: 10.156008ms +Apr 5 19:04:33.427: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.610518ms +Apr 5 19:04:35.833: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:04:35.833: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 19:04:35.836: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"91604"},"items":null} + +Apr 5 19:04:35.839: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"91604"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:35.880: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-288" for this suite. 04/05/23 19:04:35.889 +------------------------------ +• [SLOW TEST] [14.828 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should run and stop complex daemon [Conformance] + test/e2e/apps/daemon_set.go:194 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:21.07 + Apr 5 19:04:21.070: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 19:04:21.072 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:21.113 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:21.118 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should run and stop complex daemon [Conformance] + test/e2e/apps/daemon_set.go:194 + Apr 5 19:04:21.152: INFO: Creating daemon "daemon-set" with a node selector + STEP: Initially, daemon pods should not be running on any nodes. 04/05/23 19:04:21.159 + Apr 5 19:04:21.168: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:21.168: 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. 04/05/23 19:04:21.168 + Apr 5 19:04:21.196: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:21.196: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:22.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:22.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:23.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:23.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:24.205: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:24.205: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:25.202: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:25.202: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:26.203: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 + Apr 5 19:04:26.203: 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 04/05/23 19:04:26.206 + Apr 5 19:04:26.231: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 + Apr 5 19:04:26.231: INFO: Number of running nodes: 0, number of available pods: 1 in daemonset daemon-set + Apr 5 19:04:27.236: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:27.236: 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 04/05/23 19:04:27.236 + Apr 5 19:04:27.250: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:27.250: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:28.256: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:28.256: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:29.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:29.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:30.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:30.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:31.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:31.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:32.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:32.255: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:04:33.255: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 + Apr 5 19:04:33.255: 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:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 19:04:33.262 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-288, will wait for the garbage collector to delete the pods 04/05/23 19:04:33.262 + Apr 5 19:04:33.327: INFO: Deleting DaemonSet.extensions daemon-set took: 10.156008ms + Apr 5 19:04:33.427: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.610518ms + Apr 5 19:04:35.833: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:04:35.833: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 19:04:35.836: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"91604"},"items":null} + + Apr 5 19:04:35.839: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"91604"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:35.880: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-288" for this suite. 04/05/23 19:04:35.889 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:47 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:35.902 +Apr 5 19:04:35.903: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:04:35.904 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:35.919 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:35.922 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:47 +STEP: Creating configMap with name projected-configmap-test-volume-da972159-1e3b-459f-95c2-2be3965749fc 04/05/23 19:04:35.925 +STEP: Creating a pod to test consume configMaps 04/05/23 19:04:35.929 +Apr 5 19:04:35.938: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842" in namespace "projected-2841" to be "Succeeded or Failed" +Apr 5 19:04:35.944: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Pending", Reason="", readiness=false. Elapsed: 6.626917ms +Apr 5 19:04:37.949: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011082319s +Apr 5 19:04:39.949: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Running", Reason="", readiness=true. Elapsed: 4.011096041s +Apr 5 19:04:41.950: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Running", Reason="", readiness=false. Elapsed: 6.012069085s +Apr 5 19:04:43.951: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01296611s +STEP: Saw pod success 04/05/23 19:04:43.951 +Apr 5 19:04:43.951: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842" satisfied condition "Succeeded or Failed" +Apr 5 19:04:43.955: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 container agnhost-container: +STEP: delete the pod 04/05/23 19:04:43.962 +Apr 5 19:04:43.976: INFO: Waiting for pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 to disappear +Apr 5 19:04:43.980: INFO: Pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:43.980: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-2841" for this suite. 04/05/23 19:04:43.987 +------------------------------ +• [SLOW TEST] [8.091 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:47 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:35.902 + Apr 5 19:04:35.903: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:04:35.904 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:35.919 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:35.922 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:47 + STEP: Creating configMap with name projected-configmap-test-volume-da972159-1e3b-459f-95c2-2be3965749fc 04/05/23 19:04:35.925 + STEP: Creating a pod to test consume configMaps 04/05/23 19:04:35.929 + Apr 5 19:04:35.938: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842" in namespace "projected-2841" to be "Succeeded or Failed" + Apr 5 19:04:35.944: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Pending", Reason="", readiness=false. Elapsed: 6.626917ms + Apr 5 19:04:37.949: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011082319s + Apr 5 19:04:39.949: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Running", Reason="", readiness=true. Elapsed: 4.011096041s + Apr 5 19:04:41.950: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Running", Reason="", readiness=false. Elapsed: 6.012069085s + Apr 5 19:04:43.951: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01296611s + STEP: Saw pod success 04/05/23 19:04:43.951 + Apr 5 19:04:43.951: INFO: Pod "pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842" satisfied condition "Succeeded or Failed" + Apr 5 19:04:43.955: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 container agnhost-container: + STEP: delete the pod 04/05/23 19:04:43.962 + Apr 5 19:04:43.976: INFO: Waiting for pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 to disappear + Apr 5 19:04:43.980: INFO: Pod pod-projected-configmaps-d3ce592b-f3a5-4987-951f-d956b73dd842 no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:43.980: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-2841" for this suite. 04/05/23 19:04:43.987 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:89 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:44.001 +Apr 5 19:04:44.001: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:04:44.002 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:44.018 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:44.021 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:89 +STEP: Creating configMap with name configmap-test-volume-map-6607f2ef-4802-4e73-9424-e1dedd7c077f 04/05/23 19:04:44.023 +STEP: Creating a pod to test consume configMaps 04/05/23 19:04:44.028 +Apr 5 19:04:44.036: INFO: Waiting up to 5m0s for pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4" in namespace "configmap-3859" to be "Succeeded or Failed" +Apr 5 19:04:44.039: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Pending", Reason="", readiness=false. Elapsed: 3.656731ms +Apr 5 19:04:46.045: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00880633s +Apr 5 19:04:48.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Running", Reason="", readiness=true. Elapsed: 4.007735845s +Apr 5 19:04:50.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Running", Reason="", readiness=false. Elapsed: 6.008188619s +Apr 5 19:04:52.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007947447s +STEP: Saw pod success 04/05/23 19:04:52.044 +Apr 5 19:04:52.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4" satisfied condition "Succeeded or Failed" +Apr 5 19:04:52.049: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 container agnhost-container: +STEP: delete the pod 04/05/23 19:04:52.058 +Apr 5 19:04:52.072: INFO: Waiting for pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 to disappear +Apr 5 19:04:52.076: INFO: Pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:04:52.076: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-3859" for this suite. 04/05/23 19:04:52.082 +------------------------------ +• [SLOW TEST] [8.087 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:89 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:44.001 + Apr 5 19:04:44.001: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:04:44.002 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:44.018 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:44.021 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:89 + STEP: Creating configMap with name configmap-test-volume-map-6607f2ef-4802-4e73-9424-e1dedd7c077f 04/05/23 19:04:44.023 + STEP: Creating a pod to test consume configMaps 04/05/23 19:04:44.028 + Apr 5 19:04:44.036: INFO: Waiting up to 5m0s for pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4" in namespace "configmap-3859" to be "Succeeded or Failed" + Apr 5 19:04:44.039: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Pending", Reason="", readiness=false. Elapsed: 3.656731ms + Apr 5 19:04:46.045: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00880633s + Apr 5 19:04:48.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Running", Reason="", readiness=true. Elapsed: 4.007735845s + Apr 5 19:04:50.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Running", Reason="", readiness=false. Elapsed: 6.008188619s + Apr 5 19:04:52.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007947447s + STEP: Saw pod success 04/05/23 19:04:52.044 + Apr 5 19:04:52.044: INFO: Pod "pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4" satisfied condition "Succeeded or Failed" + Apr 5 19:04:52.049: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 container agnhost-container: + STEP: delete the pod 04/05/23 19:04:52.058 + Apr 5 19:04:52.072: INFO: Waiting for pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 to disappear + Apr 5 19:04:52.076: INFO: Pod pod-configmaps-9aed97ce-49d8-485e-8622-ca21b4ba9db4 no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:04:52.076: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-3859" for this suite. 04/05/23 19:04:52.082 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:267 +[BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:04:52.091 +Apr 5 19:04:52.091: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:04:52.092 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:52.107 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:52.109 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 +[It] should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:267 +STEP: Creating a pod to test downward api env vars 04/05/23 19:04:52.113 +Apr 5 19:04:52.122: INFO: Waiting up to 5m0s for pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255" in namespace "downward-api-2238" to be "Succeeded or Failed" +Apr 5 19:04:52.129: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 6.637453ms +Apr 5 19:04:54.135: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012596549s +Apr 5 19:04:56.133: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010977672s +Apr 5 19:04:58.134: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011738413s +Apr 5 19:05:00.134: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.011944613s +STEP: Saw pod success 04/05/23 19:05:00.134 +Apr 5 19:05:00.135: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255" satisfied condition "Succeeded or Failed" +Apr 5 19:05:00.138: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 container dapi-container: +STEP: delete the pod 04/05/23 19:05:00.148 +Apr 5 19:05:00.163: INFO: Waiting for pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 to disappear +Apr 5 19:05:00.166: INFO: Pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 +Apr 5 19:05:00.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-2238" for this suite. 04/05/23 19:05:00.173 +------------------------------ +• [SLOW TEST] [8.090 seconds] +[sig-node] Downward API +test/e2e/common/node/framework.go:23 + should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:267 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:04:52.091 + Apr 5 19:04:52.091: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:04:52.092 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:04:52.107 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:04:52.109 + [BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 + [It] should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:267 + STEP: Creating a pod to test downward api env vars 04/05/23 19:04:52.113 + Apr 5 19:04:52.122: INFO: Waiting up to 5m0s for pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255" in namespace "downward-api-2238" to be "Succeeded or Failed" + Apr 5 19:04:52.129: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 6.637453ms + Apr 5 19:04:54.135: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012596549s + Apr 5 19:04:56.133: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010977672s + Apr 5 19:04:58.134: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011738413s + Apr 5 19:05:00.134: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.011944613s + STEP: Saw pod success 04/05/23 19:05:00.134 + Apr 5 19:05:00.135: INFO: Pod "downward-api-48538397-5280-49b0-b82b-d0a79e74d255" satisfied condition "Succeeded or Failed" + Apr 5 19:05:00.138: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 container dapi-container: + STEP: delete the pod 04/05/23 19:05:00.148 + Apr 5 19:05:00.163: INFO: Waiting for pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 to disappear + Apr 5 19:05:00.166: INFO: Pod downward-api-48538397-5280-49b0-b82b-d0a79e74d255 no longer exists + [AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 + Apr 5 19:05:00.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-2238" for this suite. 04/05/23 19:05:00.173 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + patching/updating a validating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:413 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:05:00.187 +Apr 5 19:05:00.187: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:05:00.188 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:00.205 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:00.208 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:05:00.227 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:05:00.629 +STEP: Deploying the webhook pod 04/05/23 19:05:00.638 +STEP: Wait for the deployment to be ready 04/05/23 19:05:00.649 +Apr 5 19:05:00.662: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:05:02.673: 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(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:05:04.678: 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(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:05:06.678 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:05:06.697 +Apr 5 19:05:07.697: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] patching/updating a validating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:413 +STEP: Creating a validating webhook configuration 04/05/23 19:05:07.702 +STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.718 +STEP: Updating a validating webhook configuration's rules to not include the create operation 04/05/23 19:05:07.726 +STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.736 +STEP: Patching a validating webhook configuration's rules to include the create operation 04/05/23 19:05:07.747 +STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.755 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:05:07.766: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-3374" for this suite. 04/05/23 19:05:07.857 +STEP: Destroying namespace "webhook-3374-markers" for this suite. 04/05/23 19:05:07.867 +------------------------------ +• [SLOW TEST] [7.687 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + patching/updating a validating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:413 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:05:00.187 + Apr 5 19:05:00.187: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:05:00.188 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:00.205 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:00.208 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:05:00.227 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:05:00.629 + STEP: Deploying the webhook pod 04/05/23 19:05:00.638 + STEP: Wait for the deployment to be ready 04/05/23 19:05:00.649 + Apr 5 19:05:00.662: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:05:02.673: 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(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:05:04.678: 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(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 5, 0, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:05:06.678 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:05:06.697 + Apr 5 19:05:07.697: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] patching/updating a validating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:413 + STEP: Creating a validating webhook configuration 04/05/23 19:05:07.702 + STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.718 + STEP: Updating a validating webhook configuration's rules to not include the create operation 04/05/23 19:05:07.726 + STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.736 + STEP: Patching a validating webhook configuration's rules to include the create operation 04/05/23 19:05:07.747 + STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:05:07.755 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:05:07.766: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-3374" for this suite. 04/05/23 19:05:07.857 + STEP: Destroying namespace "webhook-3374-markers" for this suite. 04/05/23 19:05:07.867 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should provide secure master service [Conformance] + test/e2e/network/service.go:777 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:05:07.879 +Apr 5 19:05:07.879: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:05:07.88 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:07.896 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:07.9 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should provide secure master service [Conformance] + test/e2e/network/service.go:777 +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:05:07.908: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-2998" for this suite. 04/05/23 19:05:07.915 +------------------------------ +• [0.043 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should provide secure master service [Conformance] + test/e2e/network/service.go:777 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:05:07.879 + Apr 5 19:05:07.879: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:05:07.88 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:07.896 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:07.9 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should provide secure master service [Conformance] + test/e2e/network/service.go:777 + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:05:07.908: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-2998" for this suite. 04/05/23 19:05:07.915 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:57 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:05:07.923 +Apr 5 19:05:07.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:05:07.924 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:07.94 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:07.942 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:57 +STEP: Creating configMap with name projected-configmap-test-volume-6976ed4e-5c04-4a46-9dd5-20338bc36758 04/05/23 19:05:07.945 +STEP: Creating a pod to test consume configMaps 04/05/23 19:05:07.95 +Apr 5 19:05:07.958: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c" in namespace "projected-3894" to be "Succeeded or Failed" +Apr 5 19:05:07.961: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.455071ms +Apr 5 19:05:09.967: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008795469s +Apr 5 19:05:11.969: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010902349s +Apr 5 19:05:13.966: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008539847s +Apr 5 19:05:15.967: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009410739s +STEP: Saw pod success 04/05/23 19:05:15.967 +Apr 5 19:05:15.968: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c" satisfied condition "Succeeded or Failed" +Apr 5 19:05:15.971: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c container agnhost-container: +STEP: delete the pod 04/05/23 19:05:15.979 +Apr 5 19:05:15.995: INFO: Waiting for pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c to disappear +Apr 5 19:05:15.997: INFO: Pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:05:15.997: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-3894" for this suite. 04/05/23 19:05:16.002 +------------------------------ +• [SLOW TEST] [8.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/common/storage/projected_configmap.go:57 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:05:07.923 + Apr 5 19:05:07.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:05:07.924 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:07.94 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:07.942 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:57 + STEP: Creating configMap with name projected-configmap-test-volume-6976ed4e-5c04-4a46-9dd5-20338bc36758 04/05/23 19:05:07.945 + STEP: Creating a pod to test consume configMaps 04/05/23 19:05:07.95 + Apr 5 19:05:07.958: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c" in namespace "projected-3894" to be "Succeeded or Failed" + Apr 5 19:05:07.961: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.455071ms + Apr 5 19:05:09.967: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008795469s + Apr 5 19:05:11.969: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010902349s + Apr 5 19:05:13.966: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008539847s + Apr 5 19:05:15.967: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009410739s + STEP: Saw pod success 04/05/23 19:05:15.967 + Apr 5 19:05:15.968: INFO: Pod "pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c" satisfied condition "Succeeded or Failed" + Apr 5 19:05:15.971: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c container agnhost-container: + STEP: delete the pod 04/05/23 19:05:15.979 + Apr 5 19:05:15.995: INFO: Waiting for pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c to disappear + Apr 5 19:05:15.997: INFO: Pod pod-projected-configmaps-1f01acb4-56b8-49bb-b60e-e3f8fb9aaf1c no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:05:15.997: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-3894" for this suite. 04/05/23 19:05:16.002 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-node] Security Context when creating containers with AllowPrivilegeEscalation + should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:609 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:05:16.011 +Apr 5 19:05:16.011: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context-test 04/05/23 19:05:16.012 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:16.027 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:16.029 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 +[It] should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:609 +Apr 5 19:05:16.041: INFO: Waiting up to 5m0s for pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c" in namespace "security-context-test-153" to be "Succeeded or Failed" +Apr 5 19:05:16.044: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.962294ms +Apr 5 19:05:18.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007642236s +Apr 5 19:05:20.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007938549s +Apr 5 19:05:22.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008477469s +Apr 5 19:05:24.048: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 8.006752669s +Apr 5 19:05:26.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 10.007704033s +Apr 5 19:05:26.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 19:05:26.057: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-test-153" for this suite. 04/05/23 19:05:26.063 +------------------------------ +• [SLOW TEST] [10.058 seconds] +[sig-node] Security Context +test/e2e/common/node/framework.go:23 + when creating containers with AllowPrivilegeEscalation + test/e2e/common/node/security_context.go:555 + should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:609 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:05:16.011 + Apr 5 19:05:16.011: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context-test 04/05/23 19:05:16.012 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:16.027 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:16.029 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 + [It] should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:609 + Apr 5 19:05:16.041: INFO: Waiting up to 5m0s for pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c" in namespace "security-context-test-153" to be "Succeeded or Failed" + Apr 5 19:05:16.044: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.962294ms + Apr 5 19:05:18.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007642236s + Apr 5 19:05:20.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007938549s + Apr 5 19:05:22.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008477469s + Apr 5 19:05:24.048: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Pending", Reason="", readiness=false. Elapsed: 8.006752669s + Apr 5 19:05:26.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 10.007704033s + Apr 5 19:05:26.049: INFO: Pod "alpine-nnp-false-e8b411d2-3651-4fa8-8a49-27bfcc615e4c" satisfied condition "Succeeded or Failed" + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 19:05:26.057: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-test-153" for this suite. 04/05/23 19:05:26.063 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/apps/statefulset.go:306 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:05:26.07 +Apr 5 19:05:26.070: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 19:05:26.071 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:26.087 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:26.09 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-8688 04/05/23 19:05:26.094 +[It] should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/apps/statefulset.go:306 +STEP: Creating a new StatefulSet 04/05/23 19:05:26.1 +Apr 5 19:05:26.114: INFO: Found 0 stateful pods, waiting for 3 +Apr 5 19:05:36.120: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 19:05:36.120: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 19:05:36.120: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Pending - Ready=false +Apr 5 19:05:46.119: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 19:05:46.119: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 19:05:46.119: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 19:05:46.130: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 19:05:46.340: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 19:05:46.340: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 19:05:46.340: 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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 to registry.k8s.io/e2e-test-images/httpd:2.4.39-4 04/05/23 19:05:56.358 +Apr 5 19:05:56.379: INFO: Updating stateful set ss2 +STEP: Creating a new revision 04/05/23 19:05:56.379 +STEP: Updating Pods in reverse ordinal order 04/05/23 19:06:06.397 +Apr 5 19:06:06.402: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 19:06:06.579: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 19:06:06.579: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 19:06:06.579: 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' + +Apr 5 19:06:16.616: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update +Apr 5 19:06:16.616: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +Apr 5 19:06:16.616: INFO: Waiting for Pod statefulset-8688/ss2-1 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +Apr 5 19:06:26.625: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update +Apr 5 19:06:26.625: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +Apr 5 19:06:36.625: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update +Apr 5 19:06:36.625: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +Apr 5 19:06:46.626: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update +Apr 5 19:06:56.624: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update +STEP: Rolling back to a previous revision 04/05/23 19:07:06.626 +Apr 5 19:07:06.626: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 19:07:06.817: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 19:07:06.817: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 19:07:06.817: 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' + +Apr 5 19:07:16.855: INFO: Updating stateful set ss2 +STEP: Rolling back update in reverse ordinal order 04/05/23 19:07:26.875 +Apr 5 19:07:26.879: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 19:07:27.059: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 19:07:27.059: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 19:07:27.059: 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:124 +Apr 5 19:07:47.087: INFO: Deleting all statefulset in ns statefulset-8688 +Apr 5 19:07:47.090: INFO: Scaling statefulset ss2 to 0 +Apr 5 19:07:57.110: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 19:07:57.113: INFO: Deleting statefulset ss2 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:07:57.143: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-8688" for this suite. 04/05/23 19:07:57.151 +------------------------------ +• [SLOW TEST] [151.088 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/apps/statefulset.go:306 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:05:26.07 + Apr 5 19:05:26.070: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 19:05:26.071 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:05:26.087 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:05:26.09 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-8688 04/05/23 19:05:26.094 + [It] should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/apps/statefulset.go:306 + STEP: Creating a new StatefulSet 04/05/23 19:05:26.1 + Apr 5 19:05:26.114: INFO: Found 0 stateful pods, waiting for 3 + Apr 5 19:05:36.120: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 19:05:36.120: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 19:05:36.120: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Pending - Ready=false + Apr 5 19:05:46.119: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 19:05:46.119: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 19:05:46.119: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 19:05:46.130: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 19:05:46.340: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 19:05:46.340: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 19:05:46.340: 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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 to registry.k8s.io/e2e-test-images/httpd:2.4.39-4 04/05/23 19:05:56.358 + Apr 5 19:05:56.379: INFO: Updating stateful set ss2 + STEP: Creating a new revision 04/05/23 19:05:56.379 + STEP: Updating Pods in reverse ordinal order 04/05/23 19:06:06.397 + Apr 5 19:06:06.402: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 19:06:06.579: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 19:06:06.579: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 19:06:06.579: 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' + + Apr 5 19:06:16.616: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update + Apr 5 19:06:16.616: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + Apr 5 19:06:16.616: INFO: Waiting for Pod statefulset-8688/ss2-1 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + Apr 5 19:06:26.625: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update + Apr 5 19:06:26.625: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + Apr 5 19:06:36.625: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update + Apr 5 19:06:36.625: INFO: Waiting for Pod statefulset-8688/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + Apr 5 19:06:46.626: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update + Apr 5 19:06:56.624: INFO: Waiting for StatefulSet statefulset-8688/ss2 to complete update + STEP: Rolling back to a previous revision 04/05/23 19:07:06.626 + Apr 5 19:07:06.626: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 19:07:06.817: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 19:07:06.817: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 19:07:06.817: 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' + + Apr 5 19:07:16.855: INFO: Updating stateful set ss2 + STEP: Rolling back update in reverse ordinal order 04/05/23 19:07:26.875 + Apr 5 19:07:26.879: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-8688 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 19:07:27.059: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 19:07:27.059: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 19:07:27.059: 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:124 + Apr 5 19:07:47.087: INFO: Deleting all statefulset in ns statefulset-8688 + Apr 5 19:07:47.090: INFO: Scaling statefulset ss2 to 0 + Apr 5 19:07:57.110: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 19:07:57.113: INFO: Deleting statefulset ss2 + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:07:57.143: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-8688" for this suite. 04/05/23 19:07:57.151 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:97 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:07:57.159 +Apr 5 19:07:57.159: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:07:57.161 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:07:57.174 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:07:57.177 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:97 +STEP: Creating a pod to test emptydir 0644 on tmpfs 04/05/23 19:07:57.181 +Apr 5 19:07:57.189: INFO: Waiting up to 5m0s for pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b" in namespace "emptydir-6746" to be "Succeeded or Failed" +Apr 5 19:07:57.192: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.952345ms +Apr 5 19:07:59.196: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00697408s +Apr 5 19:08:01.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007728704s +Apr 5 19:08:03.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007629834s +Apr 5 19:08:05.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007988904s +STEP: Saw pod success 04/05/23 19:08:05.197 +Apr 5 19:08:05.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b" satisfied condition "Succeeded or Failed" +Apr 5 19:08:05.201: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b container test-container: +STEP: delete the pod 04/05/23 19:08:05.215 +Apr 5 19:08:05.231: INFO: Waiting for pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b to disappear +Apr 5 19:08:05.234: INFO: Pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:08:05.234: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-6746" for this suite. 04/05/23 19:08:05.239 +------------------------------ +• [SLOW TEST] [8.087 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:97 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:07:57.159 + Apr 5 19:07:57.159: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:07:57.161 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:07:57.174 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:07:57.177 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:97 + STEP: Creating a pod to test emptydir 0644 on tmpfs 04/05/23 19:07:57.181 + Apr 5 19:07:57.189: INFO: Waiting up to 5m0s for pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b" in namespace "emptydir-6746" to be "Succeeded or Failed" + Apr 5 19:07:57.192: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.952345ms + Apr 5 19:07:59.196: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00697408s + Apr 5 19:08:01.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007728704s + Apr 5 19:08:03.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007629834s + Apr 5 19:08:05.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007988904s + STEP: Saw pod success 04/05/23 19:08:05.197 + Apr 5 19:08:05.197: INFO: Pod "pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b" satisfied condition "Succeeded or Failed" + Apr 5 19:08:05.201: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b container test-container: + STEP: delete the pod 04/05/23 19:08:05.215 + Apr 5 19:08:05.231: INFO: Waiting for pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b to disappear + Apr 5 19:08:05.234: INFO: Pod pod-40199078-cdd4-4093-8ea8-d4bd6cbca63b no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:08:05.234: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-6746" for this suite. 04/05/23 19:08:05.239 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + should validate Deployment Status endpoints [Conformance] + test/e2e/apps/deployment.go:479 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:08:05.253 +Apr 5 19:08:05.253: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 19:08:05.254 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:05.269 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:05.272 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] should validate Deployment Status endpoints [Conformance] + test/e2e/apps/deployment.go:479 +STEP: creating a Deployment 04/05/23 19:08:05.28 +Apr 5 19:08:05.280: INFO: Creating simple deployment test-deployment-tqxwj +Apr 5 19:08:05.298: INFO: deployment "test-deployment-tqxwj" doesn't have the required revision set +Apr 5 19:08:07.310: 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(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:09.315: 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(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Getting /status 04/05/23 19:08:11.322 +Apr 5 19:08:11.326: INFO: Deployment test-deployment-tqxwj has Conditions: [{Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.}] +STEP: updating Deployment Status 04/05/23 19:08:11.326 +Apr 5 19:08:11.337: INFO: updatedStatus.Conditions: []v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"NewReplicaSetAvailable", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" 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 04/05/23 19:08:11.337 +Apr 5 19:08:11.339: INFO: Observed &Deployment event: ADDED +Apr 5 19:08:11.339: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} +Apr 5 19:08:11.339: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Apr 5 19:08:11.340: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-tqxwj-54bc444df" is progressing.} +Apr 5 19:08:11.340: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} +Apr 5 19:08:11.341: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.341: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Apr 5 19:08:11.341: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} +Apr 5 19:08:11.341: INFO: Found Deployment test-deployment-tqxwj in namespace deployment-7085 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} +Apr 5 19:08:11.341: INFO: Deployment test-deployment-tqxwj has an updated status +STEP: patching the Statefulset Status 04/05/23 19:08:11.341 +Apr 5 19:08:11.341: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Apr 5 19:08:11.347: 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 04/05/23 19:08:11.347 +Apr 5 19:08:11.351: INFO: Observed &Deployment event: ADDED +Apr 5 19:08:11.351: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} +Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-tqxwj-54bc444df" is progressing.} +Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} +Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} +Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 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} +Apr 5 19:08:11.353: INFO: Observed &Deployment event: MODIFIED +Apr 5 19:08:11.353: INFO: Found deployment test-deployment-tqxwj in namespace deployment-7085 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 } +Apr 5 19:08:11.353: INFO: Deployment test-deployment-tqxwj has a patched status +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 19:08:11.357: INFO: Deployment "test-deployment-tqxwj": +&Deployment{ObjectMeta:{test-deployment-tqxwj deployment-7085 863c088f-ff28-4aa9-9796-341bbbbd7ef3 94167 1 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd] map[deployment.kubernetes.io/revision:1] [] [] [{e2e.test Update apps/v1 2023-04-05 19:08:05 +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":{}}}}} } {e2e.test Update apps/v1 2023-04-05 19:08:11 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"StatusPatched\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}}}} status} {kube-controller-manager Update apps/v1 2023-04-05 19:08:11 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"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{e2e: testing,name: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc004526568 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,},DeploymentCondition{Type:Progressing,Status:True,Reason:FoundNewReplicaSet,Message:Found new replica set "test-deployment-tqxwj-54bc444df",LastUpdateTime:2023-04-05 19:08:11 +0000 UTC,LastTransitionTime:2023-04-05 19:08:11 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Apr 5 19:08:11.359: INFO: New ReplicaSet "test-deployment-tqxwj-54bc444df" of Deployment "test-deployment-tqxwj": +&ReplicaSet{ObjectMeta:{test-deployment-tqxwj-54bc444df deployment-7085 7f389110-932d-420b-9001-bdfc3962678d 94136 1 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-deployment-tqxwj 863c088f-ff28-4aa9-9796-341bbbbd7ef3 0xc004526910 0xc004526911}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:08:05 +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\":\"863c088f-ff28-4aa9-9796-341bbbbd7ef3\"}":{}}},"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 2023-04-05 19:08:09 +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: 54bc444df,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0045269b8 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{},},} +Apr 5 19:08:11.366: INFO: Pod "test-deployment-tqxwj-54bc444df-7n8tr" is available: +&Pod{ObjectMeta:{test-deployment-tqxwj-54bc444df-7n8tr test-deployment-tqxwj-54bc444df- deployment-7085 04a47161-4054-4ed0-a314-c3614b50551f 94135 0 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[] [{apps/v1 ReplicaSet test-deployment-tqxwj-54bc444df 7f389110-932d-420b-9001-bdfc3962678d 0xc002b8d280 0xc002b8d281}] [] [{kube-controller-manager Update v1 2023-04-05 19:08:05 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:e2e":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7f389110-932d-420b-9001-bdfc3962678d\"}":{}}},"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 2023-04-05 19:08:09 +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\":\"192.168.3.17\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-sg5cs,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-sg5cs,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:05 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:09 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:09 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:05 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.17,StartTime:2023-04-05 19:08:05 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:08:09 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://fab2f848572bb81e1eb1ed4a0e3b0a50eddbd0e3f1221ebb75fe4d8f92b5e3f2,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.17,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 19:08:11.366: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-7085" for this suite. 04/05/23 19:08:11.372 +------------------------------ +• [SLOW TEST] [6.125 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + should validate Deployment Status endpoints [Conformance] + test/e2e/apps/deployment.go:479 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:08:05.253 + Apr 5 19:08:05.253: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 19:08:05.254 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:05.269 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:05.272 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] should validate Deployment Status endpoints [Conformance] + test/e2e/apps/deployment.go:479 + STEP: creating a Deployment 04/05/23 19:08:05.28 + Apr 5 19:08:05.280: INFO: Creating simple deployment test-deployment-tqxwj + Apr 5 19:08:05.298: INFO: deployment "test-deployment-tqxwj" doesn't have the required revision set + Apr 5 19:08:07.310: 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(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:09.315: 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(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Getting /status 04/05/23 19:08:11.322 + Apr 5 19:08:11.326: INFO: Deployment test-deployment-tqxwj has Conditions: [{Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.}] + STEP: updating Deployment Status 04/05/23 19:08:11.326 + Apr 5 19:08:11.337: INFO: updatedStatus.Conditions: []v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 9, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 5, 0, time.Local), Reason:"NewReplicaSetAvailable", Message:"ReplicaSet \"test-deployment-tqxwj-54bc444df\" 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 04/05/23 19:08:11.337 + Apr 5 19:08:11.339: INFO: Observed &Deployment event: ADDED + Apr 5 19:08:11.339: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} + Apr 5 19:08:11.339: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} + Apr 5 19:08:11.340: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-tqxwj-54bc444df" is progressing.} + Apr 5 19:08:11.340: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} + Apr 5 19:08:11.340: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} + Apr 5 19:08:11.341: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.341: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} + Apr 5 19:08:11.341: INFO: Observed Deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} + Apr 5 19:08:11.341: INFO: Found Deployment test-deployment-tqxwj in namespace deployment-7085 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} + Apr 5 19:08:11.341: INFO: Deployment test-deployment-tqxwj has an updated status + STEP: patching the Statefulset Status 04/05/23 19:08:11.341 + Apr 5 19:08:11.341: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} + Apr 5 19:08:11.347: 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 04/05/23 19:08:11.347 + Apr 5 19:08:11.351: INFO: Observed &Deployment event: ADDED + Apr 5 19:08:11.351: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} + Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-tqxwj-54bc444df"} + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} + Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:05 +0000 UTC 2023-04-05 19:08:05 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-tqxwj-54bc444df" is progressing.} + Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} + Apr 5 19:08:11.352: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:09 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2023-04-05 19:08:09 +0000 UTC 2023-04-05 19:08:05 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-tqxwj-54bc444df" has successfully progressed.} + Apr 5 19:08:11.352: INFO: Observed deployment test-deployment-tqxwj in namespace deployment-7085 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} + Apr 5 19:08:11.353: INFO: Observed &Deployment event: MODIFIED + Apr 5 19:08:11.353: INFO: Found deployment test-deployment-tqxwj in namespace deployment-7085 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 } + Apr 5 19:08:11.353: INFO: Deployment test-deployment-tqxwj has a patched status + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 19:08:11.357: INFO: Deployment "test-deployment-tqxwj": + &Deployment{ObjectMeta:{test-deployment-tqxwj deployment-7085 863c088f-ff28-4aa9-9796-341bbbbd7ef3 94167 1 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd] map[deployment.kubernetes.io/revision:1] [] [] [{e2e.test Update apps/v1 2023-04-05 19:08:05 +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":{}}}}} } {e2e.test Update apps/v1 2023-04-05 19:08:11 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"StatusPatched\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}}}} status} {kube-controller-manager Update apps/v1 2023-04-05 19:08:11 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"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{e2e: testing,name: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc004526568 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,},DeploymentCondition{Type:Progressing,Status:True,Reason:FoundNewReplicaSet,Message:Found new replica set "test-deployment-tqxwj-54bc444df",LastUpdateTime:2023-04-05 19:08:11 +0000 UTC,LastTransitionTime:2023-04-05 19:08:11 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + + Apr 5 19:08:11.359: INFO: New ReplicaSet "test-deployment-tqxwj-54bc444df" of Deployment "test-deployment-tqxwj": + &ReplicaSet{ObjectMeta:{test-deployment-tqxwj-54bc444df deployment-7085 7f389110-932d-420b-9001-bdfc3962678d 94136 1 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-deployment-tqxwj 863c088f-ff28-4aa9-9796-341bbbbd7ef3 0xc004526910 0xc004526911}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:08:05 +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\":\"863c088f-ff28-4aa9-9796-341bbbbd7ef3\"}":{}}},"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 2023-04-05 19:08:09 +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: 54bc444df,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0045269b8 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{},},} + Apr 5 19:08:11.366: INFO: Pod "test-deployment-tqxwj-54bc444df-7n8tr" is available: + &Pod{ObjectMeta:{test-deployment-tqxwj-54bc444df-7n8tr test-deployment-tqxwj-54bc444df- deployment-7085 04a47161-4054-4ed0-a314-c3614b50551f 94135 0 2023-04-05 19:08:05 +0000 UTC map[e2e:testing name:httpd pod-template-hash:54bc444df] map[] [{apps/v1 ReplicaSet test-deployment-tqxwj-54bc444df 7f389110-932d-420b-9001-bdfc3962678d 0xc002b8d280 0xc002b8d281}] [] [{kube-controller-manager Update v1 2023-04-05 19:08:05 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:e2e":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7f389110-932d-420b-9001-bdfc3962678d\"}":{}}},"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 2023-04-05 19:08:09 +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\":\"192.168.3.17\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-sg5cs,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-sg5cs,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:05 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:09 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:09 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:08:05 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.17,StartTime:2023-04-05 19:08:05 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:08:09 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://fab2f848572bb81e1eb1ed4a0e3b0a50eddbd0e3f1221ebb75fe4d8f92b5e3f2,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.17,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 19:08:11.366: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-7085" for this suite. 04/05/23 19:08:11.372 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/apimachinery/resource_quota.go:100 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:08:11.382 +Apr 5 19:08:11.382: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:08:11.383 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:11.397 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:11.399 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/apimachinery/resource_quota.go:100 +STEP: Counting existing ResourceQuota 04/05/23 19:08:11.402 +STEP: Creating a ResourceQuota 04/05/23 19:08:16.407 +STEP: Ensuring resource quota status is calculated 04/05/23 19:08:16.414 +STEP: Creating a Service 04/05/23 19:08:18.419 +STEP: Creating a NodePort Service 04/05/23 19:08:18.45 +STEP: Not allowing a LoadBalancer Service with NodePort to be created that exceeds remaining quota 04/05/23 19:08:18.49 +STEP: Ensuring resource quota status captures service creation 04/05/23 19:08:18.533 +STEP: Deleting Services 04/05/23 19:08:20.537 +STEP: Ensuring resource quota status released usage 04/05/23 19:08:20.609 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:08:22.614: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-6155" for this suite. 04/05/23 19:08:22.62 +------------------------------ +• [SLOW TEST] [11.246 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/apimachinery/resource_quota.go:100 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:08:11.382 + Apr 5 19:08:11.382: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:08:11.383 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:11.397 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:11.399 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/apimachinery/resource_quota.go:100 + STEP: Counting existing ResourceQuota 04/05/23 19:08:11.402 + STEP: Creating a ResourceQuota 04/05/23 19:08:16.407 + STEP: Ensuring resource quota status is calculated 04/05/23 19:08:16.414 + STEP: Creating a Service 04/05/23 19:08:18.419 + STEP: Creating a NodePort Service 04/05/23 19:08:18.45 + STEP: Not allowing a LoadBalancer Service with NodePort to be created that exceeds remaining quota 04/05/23 19:08:18.49 + STEP: Ensuring resource quota status captures service creation 04/05/23 19:08:18.533 + STEP: Deleting Services 04/05/23 19:08:20.537 + STEP: Ensuring resource quota status released usage 04/05/23 19:08:20.609 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:08:22.614: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-6155" for this suite. 04/05/23 19:08:22.62 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/apimachinery/garbage_collector.go:650 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:08:22.634 +Apr 5 19:08:22.634: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 19:08:22.635 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:22.65 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:22.653 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/apimachinery/garbage_collector.go:650 +STEP: create the rc 04/05/23 19:08:22.663 +STEP: delete the rc 04/05/23 19:08:27.736 +STEP: wait for the rc to be deleted 04/05/23 19:08:28.084 +Apr 5 19:08:29.331: INFO: 84 pods remaining +Apr 5 19:08:29.603: INFO: 80 pods has nil DeletionTimestamp +Apr 5 19:08:29.603: INFO: +Apr 5 19:08:31.112: INFO: 66 pods remaining +Apr 5 19:08:31.319: INFO: 60 pods has nil DeletionTimestamp +Apr 5 19:08:31.319: INFO: +Apr 5 19:08:32.234: INFO: 49 pods remaining +Apr 5 19:08:32.234: INFO: 40 pods has nil DeletionTimestamp +Apr 5 19:08:32.234: INFO: +Apr 5 19:08:33.257: INFO: 37 pods remaining +Apr 5 19:08:33.257: INFO: 24 pods has nil DeletionTimestamp +Apr 5 19:08:33.257: INFO: +Apr 5 19:08:35.724: INFO: 14 pods remaining +Apr 5 19:08:35.749: INFO: 0 pods has nil DeletionTimestamp +Apr 5 19:08:35.749: INFO: +Apr 5 19:08:36.443: INFO: 7 pods remaining +Apr 5 19:08:36.443: INFO: 0 pods has nil DeletionTimestamp +Apr 5 19:08:36.443: INFO: +Apr 5 19:08:37.095: INFO: 4 pods remaining +Apr 5 19:08:37.097: INFO: 0 pods has nil DeletionTimestamp +Apr 5 19:08:37.097: INFO: +STEP: Gathering metrics 04/05/23 19:08:38.128 +Apr 5 19:08:38.487: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 19:08:38.522: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 34.739104ms +Apr 5 19:08:38.522: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 19:08:38.522: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 19:08:39.317: 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/node/init/init.go:32 +Apr 5 19:08:39.343: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-6062" for this suite. 04/05/23 19:08:39.355 +------------------------------ +• [SLOW TEST] [16.730 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/apimachinery/garbage_collector.go:650 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:08:22.634 + Apr 5 19:08:22.634: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 19:08:22.635 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:22.65 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:22.653 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/apimachinery/garbage_collector.go:650 + STEP: create the rc 04/05/23 19:08:22.663 + STEP: delete the rc 04/05/23 19:08:27.736 + STEP: wait for the rc to be deleted 04/05/23 19:08:28.084 + Apr 5 19:08:29.331: INFO: 84 pods remaining + Apr 5 19:08:29.603: INFO: 80 pods has nil DeletionTimestamp + Apr 5 19:08:29.603: INFO: + Apr 5 19:08:31.112: INFO: 66 pods remaining + Apr 5 19:08:31.319: INFO: 60 pods has nil DeletionTimestamp + Apr 5 19:08:31.319: INFO: + Apr 5 19:08:32.234: INFO: 49 pods remaining + Apr 5 19:08:32.234: INFO: 40 pods has nil DeletionTimestamp + Apr 5 19:08:32.234: INFO: + Apr 5 19:08:33.257: INFO: 37 pods remaining + Apr 5 19:08:33.257: INFO: 24 pods has nil DeletionTimestamp + Apr 5 19:08:33.257: INFO: + Apr 5 19:08:35.724: INFO: 14 pods remaining + Apr 5 19:08:35.749: INFO: 0 pods has nil DeletionTimestamp + Apr 5 19:08:35.749: INFO: + Apr 5 19:08:36.443: INFO: 7 pods remaining + Apr 5 19:08:36.443: INFO: 0 pods has nil DeletionTimestamp + Apr 5 19:08:36.443: INFO: + Apr 5 19:08:37.095: INFO: 4 pods remaining + Apr 5 19:08:37.097: INFO: 0 pods has nil DeletionTimestamp + Apr 5 19:08:37.097: INFO: + STEP: Gathering metrics 04/05/23 19:08:38.128 + Apr 5 19:08:38.487: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 19:08:38.522: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 34.739104ms + Apr 5 19:08:38.522: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 19:08:38.522: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 19:08:39.317: 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/node/init/init.go:32 + Apr 5 19:08:39.343: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-6062" for this suite. 04/05/23 19:08:39.355 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should unconditionally reject operations on fail closed webhook [Conformance] + test/e2e/apimachinery/webhook.go:239 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:08:39.364 +Apr 5 19:08:39.365: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:08:39.474 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:39.515 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:39.568 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:08:39.762 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:08:40.856 +STEP: Deploying the webhook pod 04/05/23 19:08:40.866 +STEP: Wait for the deployment to be ready 04/05/23 19:08:40.885 +Apr 5 19:08:40.894: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:08:42.915: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:44.921: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:46.964: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:48.922: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:50.920: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:52.920: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:08:54.921: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:08:56.921 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:08:56.944 +Apr 5 19:08:57.945: 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/apimachinery/webhook.go:239 +STEP: Registering a webhook that server cannot talk to, with fail closed policy, via the AdmissionRegistration API 04/05/23 19:08:57.95 +STEP: create a namespace for the webhook 04/05/23 19:08:57.969 +STEP: create a configmap should be unconditionally rejected by the webhook 04/05/23 19:08:57.976 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:08:58.110: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-8277" for this suite. 04/05/23 19:08:58.2 +STEP: Destroying namespace "webhook-8277-markers" for this suite. 04/05/23 19:08:58.211 +------------------------------ +• [SLOW TEST] [18.857 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should unconditionally reject operations on fail closed webhook [Conformance] + test/e2e/apimachinery/webhook.go:239 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:08:39.364 + Apr 5 19:08:39.365: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:08:39.474 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:39.515 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:39.568 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:08:39.762 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:08:40.856 + STEP: Deploying the webhook pod 04/05/23 19:08:40.866 + STEP: Wait for the deployment to be ready 04/05/23 19:08:40.885 + Apr 5 19:08:40.894: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:08:42.915: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:44.921: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:46.964: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:48.922: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:50.920: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:52.920: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:08:54.921: 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(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 40, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:08:56.921 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:08:56.944 + Apr 5 19:08:57.945: 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/apimachinery/webhook.go:239 + STEP: Registering a webhook that server cannot talk to, with fail closed policy, via the AdmissionRegistration API 04/05/23 19:08:57.95 + STEP: create a namespace for the webhook 04/05/23 19:08:57.969 + STEP: create a configmap should be unconditionally rejected by the webhook 04/05/23 19:08:57.976 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:08:58.110: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-8277" for this suite. 04/05/23 19:08:58.2 + STEP: Destroying namespace "webhook-8277-markers" for this suite. 04/05/23 19:08:58.211 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny attaching pod [Conformance] + test/e2e/apimachinery/webhook.go:209 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:08:58.231 +Apr 5 19:08:58.231: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:08:58.233 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:58.254 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:58.257 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:08:58.273 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:08:59.036 +STEP: Deploying the webhook pod 04/05/23 19:08:59.041 +STEP: Wait for the deployment to be ready 04/05/23 19:08:59.055 +Apr 5 19:08:59.065: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:09:01.078: 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(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:09:03.083: 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(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:09:05.082 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:09:05.101 +Apr 5 19:09:06.101: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should be able to deny attaching pod [Conformance] + test/e2e/apimachinery/webhook.go:209 +STEP: Registering the webhook via the AdmissionRegistration API 04/05/23 19:09:06.106 +STEP: create a pod 04/05/23 19:09:06.121 +Apr 5 19:09:06.126: INFO: Waiting up to 5m0s for pod "to-be-attached-pod" in namespace "webhook-9189" to be "running" +Apr 5 19:09:06.129: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 3.227861ms +Apr 5 19:09:08.134: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007789213s +Apr 5 19:09:10.135: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009499704s +Apr 5 19:09:12.133: INFO: Pod "to-be-attached-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.007499346s +Apr 5 19:09:12.133: INFO: Pod "to-be-attached-pod" satisfied condition "running" +STEP: 'kubectl attach' the pod, should be denied by the webhook 04/05/23 19:09:12.133 +Apr 5 19:09:12.134: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=webhook-9189 attach --namespace=webhook-9189 to-be-attached-pod -i -c=container1' +Apr 5 19:09:12.235: INFO: rc: 1 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:09:12.244: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-9189" for this suite. 04/05/23 19:09:12.296 +STEP: Destroying namespace "webhook-9189-markers" for this suite. 04/05/23 19:09:12.305 +------------------------------ +• [SLOW TEST] [14.085 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to deny attaching pod [Conformance] + test/e2e/apimachinery/webhook.go:209 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:08:58.231 + Apr 5 19:08:58.231: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:08:58.233 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:08:58.254 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:08:58.257 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:08:58.273 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:08:59.036 + STEP: Deploying the webhook pod 04/05/23 19:08:59.041 + STEP: Wait for the deployment to be ready 04/05/23 19:08:59.055 + Apr 5 19:08:59.065: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:09:01.078: 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(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:09:03.083: 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(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 8, 59, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:09:05.082 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:09:05.101 + Apr 5 19:09:06.101: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should be able to deny attaching pod [Conformance] + test/e2e/apimachinery/webhook.go:209 + STEP: Registering the webhook via the AdmissionRegistration API 04/05/23 19:09:06.106 + STEP: create a pod 04/05/23 19:09:06.121 + Apr 5 19:09:06.126: INFO: Waiting up to 5m0s for pod "to-be-attached-pod" in namespace "webhook-9189" to be "running" + Apr 5 19:09:06.129: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 3.227861ms + Apr 5 19:09:08.134: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007789213s + Apr 5 19:09:10.135: INFO: Pod "to-be-attached-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009499704s + Apr 5 19:09:12.133: INFO: Pod "to-be-attached-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.007499346s + Apr 5 19:09:12.133: INFO: Pod "to-be-attached-pod" satisfied condition "running" + STEP: 'kubectl attach' the pod, should be denied by the webhook 04/05/23 19:09:12.133 + Apr 5 19:09:12.134: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=webhook-9189 attach --namespace=webhook-9189 to-be-attached-pod -i -c=container1' + Apr 5 19:09:12.235: INFO: rc: 1 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:09:12.244: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-9189" for this suite. 04/05/23 19:09:12.296 + STEP: Destroying namespace "webhook-9189-markers" for this suite. 04/05/23 19:09:12.305 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] DisruptionController Listing PodDisruptionBudgets for all namespaces + should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/apps/disruption.go:87 +[BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:09:12.317 +Apr 5 19:09:12.317: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption 04/05/23 19:09:12.319 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:12.336 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:12.339 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 +[BeforeEach] Listing PodDisruptionBudgets for all namespaces + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:09:12.344 +Apr 5 19:09:12.344: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption-2 04/05/23 19:09:12.346 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:12.362 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:12.365 +[BeforeEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/metrics/init/init.go:31 +[It] should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/apps/disruption.go:87 +STEP: Waiting for the pdb to be processed 04/05/23 19:09:12.374 +STEP: Waiting for the pdb to be processed 04/05/23 19:09:14.387 +STEP: Waiting for the pdb to be processed 04/05/23 19:09:14.399 +STEP: listing a collection of PDBs across all namespaces 04/05/23 19:09:16.409 +STEP: listing a collection of PDBs in namespace disruption-7916 04/05/23 19:09:16.412 +STEP: deleting a collection of PDBs 04/05/23 19:09:16.416 +STEP: Waiting for the PDB collection to be deleted 04/05/23 19:09:16.43 +[AfterEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/node/init/init.go:32 +Apr 5 19:09:16.434: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:09:16.439: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + dump namespaces | framework.go:196 +[DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-2-734" for this suite. 04/05/23 19:09:16.444 +[DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-7916" for this suite. 04/05/23 19:09:16.451 +------------------------------ +• [4.142 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + Listing PodDisruptionBudgets for all namespaces + test/e2e/apps/disruption.go:78 + should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/apps/disruption.go:87 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:09:12.317 + Apr 5 19:09:12.317: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption 04/05/23 19:09:12.319 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:12.336 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:12.339 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 + [BeforeEach] Listing PodDisruptionBudgets for all namespaces + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:09:12.344 + Apr 5 19:09:12.344: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption-2 04/05/23 19:09:12.346 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:12.362 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:12.365 + [BeforeEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/metrics/init/init.go:31 + [It] should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/apps/disruption.go:87 + STEP: Waiting for the pdb to be processed 04/05/23 19:09:12.374 + STEP: Waiting for the pdb to be processed 04/05/23 19:09:14.387 + STEP: Waiting for the pdb to be processed 04/05/23 19:09:14.399 + STEP: listing a collection of PDBs across all namespaces 04/05/23 19:09:16.409 + STEP: listing a collection of PDBs in namespace disruption-7916 04/05/23 19:09:16.412 + STEP: deleting a collection of PDBs 04/05/23 19:09:16.416 + STEP: Waiting for the PDB collection to be deleted 04/05/23 19:09:16.43 + [AfterEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/node/init/init.go:32 + Apr 5 19:09:16.434: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:09:16.439: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + dump namespaces | framework.go:196 + [DeferCleanup (Each)] Listing PodDisruptionBudgets for all namespaces + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-2-734" for this suite. 04/05/23 19:09:16.444 + [DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-7916" for this suite. 04/05/23 19:09:16.451 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + updates the published spec when one version gets renamed [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:391 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:09:16.463 +Apr 5 19:09:16.463: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:09:16.464 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:16.478 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:16.481 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] updates the published spec when one version gets renamed [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:391 +STEP: set up a multi version CRD 04/05/23 19:09:16.484 +Apr 5 19:09:16.485: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: rename a version 04/05/23 19:09:23.188 +STEP: check the new version name is served 04/05/23 19:09:23.203 +STEP: check the old version name is removed 04/05/23 19:09:27.405 +STEP: check the other version is not changed 04/05/23 19:09:28.392 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:09:34.072: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-1503" for this suite. 04/05/23 19:09:34.084 +------------------------------ +• [SLOW TEST] [17.629 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/apimachinery/crd_publish_openapi.go:391 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:09:16.463 + Apr 5 19:09:16.463: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:09:16.464 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:16.478 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:16.481 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] updates the published spec when one version gets renamed [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:391 + STEP: set up a multi version CRD 04/05/23 19:09:16.484 + Apr 5 19:09:16.485: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: rename a version 04/05/23 19:09:23.188 + STEP: check the new version name is served 04/05/23 19:09:23.203 + STEP: check the old version name is removed 04/05/23 19:09:27.405 + STEP: check the other version is not changed 04/05/23 19:09:28.392 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:09:34.072: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-1503" for this suite. 04/05/23 19:09:34.084 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] ResourceQuota + should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/apimachinery/resource_quota.go:803 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:09:34.094 +Apr 5 19:09:34.094: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:09:34.095 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:34.111 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:34.114 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/apimachinery/resource_quota.go:803 +STEP: Creating a ResourceQuota with best effort scope 04/05/23 19:09:34.117 +STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:09:34.122 +STEP: Creating a ResourceQuota with not best effort scope 04/05/23 19:09:36.128 +STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:09:36.133 +STEP: Creating a best-effort pod 04/05/23 19:09:38.137 +STEP: Ensuring resource quota with best effort scope captures the pod usage 04/05/23 19:09:38.151 +STEP: Ensuring resource quota with not best effort ignored the pod usage 04/05/23 19:09:40.156 +STEP: Deleting the pod 04/05/23 19:09:42.161 +STEP: Ensuring resource quota status released the pod usage 04/05/23 19:09:42.172 +STEP: Creating a not best-effort pod 04/05/23 19:09:44.177 +STEP: Ensuring resource quota with not best effort scope captures the pod usage 04/05/23 19:09:44.189 +STEP: Ensuring resource quota with best effort scope ignored the pod usage 04/05/23 19:09:46.193 +STEP: Deleting the pod 04/05/23 19:09:48.198 +STEP: Ensuring resource quota status released the pod usage 04/05/23 19:09:48.213 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:09:50.219: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-3274" for this suite. 04/05/23 19:09:50.225 +------------------------------ +• [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/apimachinery/resource_quota.go:803 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:09:34.094 + Apr 5 19:09:34.094: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:09:34.095 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:34.111 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:34.114 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/apimachinery/resource_quota.go:803 + STEP: Creating a ResourceQuota with best effort scope 04/05/23 19:09:34.117 + STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:09:34.122 + STEP: Creating a ResourceQuota with not best effort scope 04/05/23 19:09:36.128 + STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:09:36.133 + STEP: Creating a best-effort pod 04/05/23 19:09:38.137 + STEP: Ensuring resource quota with best effort scope captures the pod usage 04/05/23 19:09:38.151 + STEP: Ensuring resource quota with not best effort ignored the pod usage 04/05/23 19:09:40.156 + STEP: Deleting the pod 04/05/23 19:09:42.161 + STEP: Ensuring resource quota status released the pod usage 04/05/23 19:09:42.172 + STEP: Creating a not best-effort pod 04/05/23 19:09:44.177 + STEP: Ensuring resource quota with not best effort scope captures the pod usage 04/05/23 19:09:44.189 + STEP: Ensuring resource quota with best effort scope ignored the pod usage 04/05/23 19:09:46.193 + STEP: Deleting the pod 04/05/23 19:09:48.198 + STEP: Ensuring resource quota status released the pod usage 04/05/23 19:09:48.213 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:09:50.219: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-3274" for this suite. 04/05/23 19:09:50.225 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should orphan pods created by rc if delete options say so [Conformance] + test/e2e/apimachinery/garbage_collector.go:370 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:09:50.239 +Apr 5 19:09:50.239: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 19:09:50.24 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:50.257 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:50.26 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should orphan pods created by rc if delete options say so [Conformance] + test/e2e/apimachinery/garbage_collector.go:370 +STEP: create the rc 04/05/23 19:09:50.269 +STEP: delete the rc 04/05/23 19:09:55.442 +STEP: wait for the rc to be deleted 04/05/23 19:09:55.462 +STEP: wait for 30 seconds to see if the garbage collector mistakenly deletes the pods 04/05/23 19:10:00.568 +STEP: Gathering metrics 04/05/23 19:10:30.949 +Apr 5 19:10:31.089: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 19:10:31.293: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 132.243954ms +Apr 5 19:10:31.305: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 19:10:31.305: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 19:10:32.208: 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: + +Apr 5 19:10:32.208: INFO: Deleting pod "simpletest.rc-27mj7" in namespace "gc-2301" +Apr 5 19:10:32.221: INFO: Deleting pod "simpletest.rc-27z5j" in namespace "gc-2301" +Apr 5 19:10:32.246: INFO: Deleting pod "simpletest.rc-28748" in namespace "gc-2301" +Apr 5 19:10:32.257: INFO: Deleting pod "simpletest.rc-28qgd" in namespace "gc-2301" +Apr 5 19:10:32.270: INFO: Deleting pod "simpletest.rc-2d9mr" in namespace "gc-2301" +Apr 5 19:10:32.285: INFO: Deleting pod "simpletest.rc-2hfnx" in namespace "gc-2301" +Apr 5 19:10:32.301: INFO: Deleting pod "simpletest.rc-2k4n5" in namespace "gc-2301" +Apr 5 19:10:32.364: INFO: Deleting pod "simpletest.rc-2rvf4" in namespace "gc-2301" +Apr 5 19:10:32.455: INFO: Deleting pod "simpletest.rc-4qmbz" in namespace "gc-2301" +Apr 5 19:10:32.500: INFO: Deleting pod "simpletest.rc-4t4wp" in namespace "gc-2301" +Apr 5 19:10:32.569: INFO: Deleting pod "simpletest.rc-56bsp" in namespace "gc-2301" +Apr 5 19:10:32.582: INFO: Deleting pod "simpletest.rc-5js4b" in namespace "gc-2301" +Apr 5 19:10:32.595: INFO: Deleting pod "simpletest.rc-5wnz9" in namespace "gc-2301" +Apr 5 19:10:32.635: INFO: Deleting pod "simpletest.rc-64c2g" in namespace "gc-2301" +Apr 5 19:10:32.812: INFO: Deleting pod "simpletest.rc-68tgx" in namespace "gc-2301" +Apr 5 19:10:32.939: INFO: Deleting pod "simpletest.rc-6b7h6" in namespace "gc-2301" +Apr 5 19:10:32.955: INFO: Deleting pod "simpletest.rc-6kdbk" in namespace "gc-2301" +Apr 5 19:10:32.992: INFO: Deleting pod "simpletest.rc-6x8nl" in namespace "gc-2301" +Apr 5 19:10:33.029: INFO: Deleting pod "simpletest.rc-6zz5x" in namespace "gc-2301" +Apr 5 19:10:33.045: INFO: Deleting pod "simpletest.rc-77sgs" in namespace "gc-2301" +Apr 5 19:10:33.113: INFO: Deleting pod "simpletest.rc-7hcqh" in namespace "gc-2301" +Apr 5 19:10:33.128: INFO: Deleting pod "simpletest.rc-7x9wg" in namespace "gc-2301" +Apr 5 19:10:33.171: INFO: Deleting pod "simpletest.rc-82qmz" in namespace "gc-2301" +Apr 5 19:10:33.196: INFO: Deleting pod "simpletest.rc-87g7w" in namespace "gc-2301" +Apr 5 19:10:33.209: INFO: Deleting pod "simpletest.rc-8mpdj" in namespace "gc-2301" +Apr 5 19:10:33.263: INFO: Deleting pod "simpletest.rc-8sx44" in namespace "gc-2301" +Apr 5 19:10:33.283: INFO: Deleting pod "simpletest.rc-9l7xl" in namespace "gc-2301" +Apr 5 19:10:33.297: INFO: Deleting pod "simpletest.rc-9rfcc" in namespace "gc-2301" +Apr 5 19:10:33.323: INFO: Deleting pod "simpletest.rc-bklhp" in namespace "gc-2301" +Apr 5 19:10:33.375: INFO: Deleting pod "simpletest.rc-bqv6h" in namespace "gc-2301" +Apr 5 19:10:33.450: INFO: Deleting pod "simpletest.rc-ck998" in namespace "gc-2301" +Apr 5 19:10:33.473: INFO: Deleting pod "simpletest.rc-cnjvq" in namespace "gc-2301" +Apr 5 19:10:33.488: INFO: Deleting pod "simpletest.rc-drxkw" in namespace "gc-2301" +Apr 5 19:10:33.503: INFO: Deleting pod "simpletest.rc-fcdbn" in namespace "gc-2301" +Apr 5 19:10:33.517: INFO: Deleting pod "simpletest.rc-fhhqw" in namespace "gc-2301" +Apr 5 19:10:33.529: INFO: Deleting pod "simpletest.rc-g426g" in namespace "gc-2301" +Apr 5 19:10:33.553: INFO: Deleting pod "simpletest.rc-g48hd" in namespace "gc-2301" +Apr 5 19:10:33.577: INFO: Deleting pod "simpletest.rc-g49kp" in namespace "gc-2301" +Apr 5 19:10:33.608: INFO: Deleting pod "simpletest.rc-gn4v8" in namespace "gc-2301" +Apr 5 19:10:33.623: INFO: Deleting pod "simpletest.rc-gndqp" in namespace "gc-2301" +Apr 5 19:10:33.637: INFO: Deleting pod "simpletest.rc-h5gmr" in namespace "gc-2301" +Apr 5 19:10:33.718: INFO: Deleting pod "simpletest.rc-h9qk4" in namespace "gc-2301" +Apr 5 19:10:33.732: INFO: Deleting pod "simpletest.rc-jbssl" in namespace "gc-2301" +Apr 5 19:10:33.743: INFO: Deleting pod "simpletest.rc-jns4t" in namespace "gc-2301" +Apr 5 19:10:33.756: INFO: Deleting pod "simpletest.rc-js722" in namespace "gc-2301" +Apr 5 19:10:33.767: INFO: Deleting pod "simpletest.rc-k9n8b" in namespace "gc-2301" +Apr 5 19:10:33.779: INFO: Deleting pod "simpletest.rc-kchvt" in namespace "gc-2301" +Apr 5 19:10:33.789: INFO: Deleting pod "simpletest.rc-klh5h" in namespace "gc-2301" +Apr 5 19:10:33.800: INFO: Deleting pod "simpletest.rc-kqmx5" in namespace "gc-2301" +Apr 5 19:10:33.829: INFO: Deleting pod "simpletest.rc-lmzzd" in namespace "gc-2301" +Apr 5 19:10:33.866: INFO: Deleting pod "simpletest.rc-lpmjk" in namespace "gc-2301" +Apr 5 19:10:33.887: INFO: Deleting pod "simpletest.rc-lpnpb" in namespace "gc-2301" +Apr 5 19:10:33.898: INFO: Deleting pod "simpletest.rc-lqsp6" in namespace "gc-2301" +Apr 5 19:10:33.909: INFO: Deleting pod "simpletest.rc-lz92v" in namespace "gc-2301" +Apr 5 19:10:33.955: INFO: Deleting pod "simpletest.rc-m7ghg" in namespace "gc-2301" +Apr 5 19:10:33.968: INFO: Deleting pod "simpletest.rc-n96ld" in namespace "gc-2301" +Apr 5 19:10:33.981: INFO: Deleting pod "simpletest.rc-nf6q2" in namespace "gc-2301" +Apr 5 19:10:34.000: INFO: Deleting pod "simpletest.rc-nf7ml" in namespace "gc-2301" +Apr 5 19:10:34.024: INFO: Deleting pod "simpletest.rc-nfvqw" in namespace "gc-2301" +Apr 5 19:10:34.046: INFO: Deleting pod "simpletest.rc-njj7c" in namespace "gc-2301" +Apr 5 19:10:34.097: INFO: Deleting pod "simpletest.rc-nv6qx" in namespace "gc-2301" +Apr 5 19:10:34.114: INFO: Deleting pod "simpletest.rc-nw9fj" in namespace "gc-2301" +Apr 5 19:10:34.128: INFO: Deleting pod "simpletest.rc-pd4g9" in namespace "gc-2301" +Apr 5 19:10:34.155: INFO: Deleting pod "simpletest.rc-pwwq6" in namespace "gc-2301" +Apr 5 19:10:34.169: INFO: Deleting pod "simpletest.rc-q2g4m" in namespace "gc-2301" +Apr 5 19:10:34.229: INFO: Deleting pod "simpletest.rc-q5f9p" in namespace "gc-2301" +Apr 5 19:10:34.494: INFO: Deleting pod "simpletest.rc-qpwpc" in namespace "gc-2301" +Apr 5 19:10:34.508: INFO: Deleting pod "simpletest.rc-r2scz" in namespace "gc-2301" +Apr 5 19:10:34.518: INFO: Deleting pod "simpletest.rc-r8z7f" in namespace "gc-2301" +Apr 5 19:10:34.577: INFO: Deleting pod "simpletest.rc-rb4hc" in namespace "gc-2301" +Apr 5 19:10:34.625: INFO: Deleting pod "simpletest.rc-rgvqh" in namespace "gc-2301" +Apr 5 19:10:34.713: INFO: Deleting pod "simpletest.rc-rrnt8" in namespace "gc-2301" +Apr 5 19:10:34.899: INFO: Deleting pod "simpletest.rc-rv6qs" in namespace "gc-2301" +Apr 5 19:10:34.939: INFO: Deleting pod "simpletest.rc-s5zns" in namespace "gc-2301" +Apr 5 19:10:34.950: INFO: Deleting pod "simpletest.rc-sfztk" in namespace "gc-2301" +Apr 5 19:10:34.965: INFO: Deleting pod "simpletest.rc-sgvtm" in namespace "gc-2301" +Apr 5 19:10:34.989: INFO: Deleting pod "simpletest.rc-sh7wj" in namespace "gc-2301" +Apr 5 19:10:35.004: INFO: Deleting pod "simpletest.rc-sj9rb" in namespace "gc-2301" +Apr 5 19:10:35.154: INFO: Deleting pod "simpletest.rc-t8g9q" in namespace "gc-2301" +Apr 5 19:10:35.243: INFO: Deleting pod "simpletest.rc-tgrqx" in namespace "gc-2301" +Apr 5 19:10:35.253: INFO: Deleting pod "simpletest.rc-tk4kb" in namespace "gc-2301" +Apr 5 19:10:35.265: INFO: Deleting pod "simpletest.rc-tnl6b" in namespace "gc-2301" +Apr 5 19:10:35.282: INFO: Deleting pod "simpletest.rc-tr9cz" in namespace "gc-2301" +Apr 5 19:10:35.357: INFO: Deleting pod "simpletest.rc-trtd9" in namespace "gc-2301" +Apr 5 19:10:35.485: INFO: Deleting pod "simpletest.rc-v64hr" in namespace "gc-2301" +Apr 5 19:10:35.504: INFO: Deleting pod "simpletest.rc-v7px6" in namespace "gc-2301" +Apr 5 19:10:35.520: INFO: Deleting pod "simpletest.rc-v9c4v" in namespace "gc-2301" +Apr 5 19:10:35.539: INFO: Deleting pod "simpletest.rc-vcgpp" in namespace "gc-2301" +Apr 5 19:10:35.552: INFO: Deleting pod "simpletest.rc-w87xp" in namespace "gc-2301" +Apr 5 19:10:35.579: INFO: Deleting pod "simpletest.rc-wm9x2" in namespace "gc-2301" +Apr 5 19:10:35.596: INFO: Deleting pod "simpletest.rc-wwmph" in namespace "gc-2301" +Apr 5 19:10:35.615: INFO: Deleting pod "simpletest.rc-x2jtp" in namespace "gc-2301" +Apr 5 19:10:35.628: INFO: Deleting pod "simpletest.rc-x9md4" in namespace "gc-2301" +Apr 5 19:10:35.640: INFO: Deleting pod "simpletest.rc-xcbqh" in namespace "gc-2301" +Apr 5 19:10:35.649: INFO: Deleting pod "simpletest.rc-xdpn8" in namespace "gc-2301" +Apr 5 19:10:35.663: INFO: Deleting pod "simpletest.rc-zd2s9" in namespace "gc-2301" +Apr 5 19:10:35.676: INFO: Deleting pod "simpletest.rc-zg8fp" in namespace "gc-2301" +Apr 5 19:10:35.687: INFO: Deleting pod "simpletest.rc-zn4tg" in namespace "gc-2301" +Apr 5 19:10:35.700: INFO: Deleting pod "simpletest.rc-zsmvl" in namespace "gc-2301" +Apr 5 19:10:35.712: INFO: Deleting pod "simpletest.rc-zsth7" in namespace "gc-2301" +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 +Apr 5 19:10:35.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-2301" for this suite. 04/05/23 19:10:35.734 +------------------------------ +• [SLOW TEST] [45.502 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/apimachinery/garbage_collector.go:370 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:09:50.239 + Apr 5 19:09:50.239: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 19:09:50.24 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:09:50.257 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:09:50.26 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should orphan pods created by rc if delete options say so [Conformance] + test/e2e/apimachinery/garbage_collector.go:370 + STEP: create the rc 04/05/23 19:09:50.269 + STEP: delete the rc 04/05/23 19:09:55.442 + STEP: wait for the rc to be deleted 04/05/23 19:09:55.462 + STEP: wait for 30 seconds to see if the garbage collector mistakenly deletes the pods 04/05/23 19:10:00.568 + STEP: Gathering metrics 04/05/23 19:10:30.949 + Apr 5 19:10:31.089: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 19:10:31.293: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 132.243954ms + Apr 5 19:10:31.305: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 19:10:31.305: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 19:10:32.208: 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: + + Apr 5 19:10:32.208: INFO: Deleting pod "simpletest.rc-27mj7" in namespace "gc-2301" + Apr 5 19:10:32.221: INFO: Deleting pod "simpletest.rc-27z5j" in namespace "gc-2301" + Apr 5 19:10:32.246: INFO: Deleting pod "simpletest.rc-28748" in namespace "gc-2301" + Apr 5 19:10:32.257: INFO: Deleting pod "simpletest.rc-28qgd" in namespace "gc-2301" + Apr 5 19:10:32.270: INFO: Deleting pod "simpletest.rc-2d9mr" in namespace "gc-2301" + Apr 5 19:10:32.285: INFO: Deleting pod "simpletest.rc-2hfnx" in namespace "gc-2301" + Apr 5 19:10:32.301: INFO: Deleting pod "simpletest.rc-2k4n5" in namespace "gc-2301" + Apr 5 19:10:32.364: INFO: Deleting pod "simpletest.rc-2rvf4" in namespace "gc-2301" + Apr 5 19:10:32.455: INFO: Deleting pod "simpletest.rc-4qmbz" in namespace "gc-2301" + Apr 5 19:10:32.500: INFO: Deleting pod "simpletest.rc-4t4wp" in namespace "gc-2301" + Apr 5 19:10:32.569: INFO: Deleting pod "simpletest.rc-56bsp" in namespace "gc-2301" + Apr 5 19:10:32.582: INFO: Deleting pod "simpletest.rc-5js4b" in namespace "gc-2301" + Apr 5 19:10:32.595: INFO: Deleting pod "simpletest.rc-5wnz9" in namespace "gc-2301" + Apr 5 19:10:32.635: INFO: Deleting pod "simpletest.rc-64c2g" in namespace "gc-2301" + Apr 5 19:10:32.812: INFO: Deleting pod "simpletest.rc-68tgx" in namespace "gc-2301" + Apr 5 19:10:32.939: INFO: Deleting pod "simpletest.rc-6b7h6" in namespace "gc-2301" + Apr 5 19:10:32.955: INFO: Deleting pod "simpletest.rc-6kdbk" in namespace "gc-2301" + Apr 5 19:10:32.992: INFO: Deleting pod "simpletest.rc-6x8nl" in namespace "gc-2301" + Apr 5 19:10:33.029: INFO: Deleting pod "simpletest.rc-6zz5x" in namespace "gc-2301" + Apr 5 19:10:33.045: INFO: Deleting pod "simpletest.rc-77sgs" in namespace "gc-2301" + Apr 5 19:10:33.113: INFO: Deleting pod "simpletest.rc-7hcqh" in namespace "gc-2301" + Apr 5 19:10:33.128: INFO: Deleting pod "simpletest.rc-7x9wg" in namespace "gc-2301" + Apr 5 19:10:33.171: INFO: Deleting pod "simpletest.rc-82qmz" in namespace "gc-2301" + Apr 5 19:10:33.196: INFO: Deleting pod "simpletest.rc-87g7w" in namespace "gc-2301" + Apr 5 19:10:33.209: INFO: Deleting pod "simpletest.rc-8mpdj" in namespace "gc-2301" + Apr 5 19:10:33.263: INFO: Deleting pod "simpletest.rc-8sx44" in namespace "gc-2301" + Apr 5 19:10:33.283: INFO: Deleting pod "simpletest.rc-9l7xl" in namespace "gc-2301" + Apr 5 19:10:33.297: INFO: Deleting pod "simpletest.rc-9rfcc" in namespace "gc-2301" + Apr 5 19:10:33.323: INFO: Deleting pod "simpletest.rc-bklhp" in namespace "gc-2301" + Apr 5 19:10:33.375: INFO: Deleting pod "simpletest.rc-bqv6h" in namespace "gc-2301" + Apr 5 19:10:33.450: INFO: Deleting pod "simpletest.rc-ck998" in namespace "gc-2301" + Apr 5 19:10:33.473: INFO: Deleting pod "simpletest.rc-cnjvq" in namespace "gc-2301" + Apr 5 19:10:33.488: INFO: Deleting pod "simpletest.rc-drxkw" in namespace "gc-2301" + Apr 5 19:10:33.503: INFO: Deleting pod "simpletest.rc-fcdbn" in namespace "gc-2301" + Apr 5 19:10:33.517: INFO: Deleting pod "simpletest.rc-fhhqw" in namespace "gc-2301" + Apr 5 19:10:33.529: INFO: Deleting pod "simpletest.rc-g426g" in namespace "gc-2301" + Apr 5 19:10:33.553: INFO: Deleting pod "simpletest.rc-g48hd" in namespace "gc-2301" + Apr 5 19:10:33.577: INFO: Deleting pod "simpletest.rc-g49kp" in namespace "gc-2301" + Apr 5 19:10:33.608: INFO: Deleting pod "simpletest.rc-gn4v8" in namespace "gc-2301" + Apr 5 19:10:33.623: INFO: Deleting pod "simpletest.rc-gndqp" in namespace "gc-2301" + Apr 5 19:10:33.637: INFO: Deleting pod "simpletest.rc-h5gmr" in namespace "gc-2301" + Apr 5 19:10:33.718: INFO: Deleting pod "simpletest.rc-h9qk4" in namespace "gc-2301" + Apr 5 19:10:33.732: INFO: Deleting pod "simpletest.rc-jbssl" in namespace "gc-2301" + Apr 5 19:10:33.743: INFO: Deleting pod "simpletest.rc-jns4t" in namespace "gc-2301" + Apr 5 19:10:33.756: INFO: Deleting pod "simpletest.rc-js722" in namespace "gc-2301" + Apr 5 19:10:33.767: INFO: Deleting pod "simpletest.rc-k9n8b" in namespace "gc-2301" + Apr 5 19:10:33.779: INFO: Deleting pod "simpletest.rc-kchvt" in namespace "gc-2301" + Apr 5 19:10:33.789: INFO: Deleting pod "simpletest.rc-klh5h" in namespace "gc-2301" + Apr 5 19:10:33.800: INFO: Deleting pod "simpletest.rc-kqmx5" in namespace "gc-2301" + Apr 5 19:10:33.829: INFO: Deleting pod "simpletest.rc-lmzzd" in namespace "gc-2301" + Apr 5 19:10:33.866: INFO: Deleting pod "simpletest.rc-lpmjk" in namespace "gc-2301" + Apr 5 19:10:33.887: INFO: Deleting pod "simpletest.rc-lpnpb" in namespace "gc-2301" + Apr 5 19:10:33.898: INFO: Deleting pod "simpletest.rc-lqsp6" in namespace "gc-2301" + Apr 5 19:10:33.909: INFO: Deleting pod "simpletest.rc-lz92v" in namespace "gc-2301" + Apr 5 19:10:33.955: INFO: Deleting pod "simpletest.rc-m7ghg" in namespace "gc-2301" + Apr 5 19:10:33.968: INFO: Deleting pod "simpletest.rc-n96ld" in namespace "gc-2301" + Apr 5 19:10:33.981: INFO: Deleting pod "simpletest.rc-nf6q2" in namespace "gc-2301" + Apr 5 19:10:34.000: INFO: Deleting pod "simpletest.rc-nf7ml" in namespace "gc-2301" + Apr 5 19:10:34.024: INFO: Deleting pod "simpletest.rc-nfvqw" in namespace "gc-2301" + Apr 5 19:10:34.046: INFO: Deleting pod "simpletest.rc-njj7c" in namespace "gc-2301" + Apr 5 19:10:34.097: INFO: Deleting pod "simpletest.rc-nv6qx" in namespace "gc-2301" + Apr 5 19:10:34.114: INFO: Deleting pod "simpletest.rc-nw9fj" in namespace "gc-2301" + Apr 5 19:10:34.128: INFO: Deleting pod "simpletest.rc-pd4g9" in namespace "gc-2301" + Apr 5 19:10:34.155: INFO: Deleting pod "simpletest.rc-pwwq6" in namespace "gc-2301" + Apr 5 19:10:34.169: INFO: Deleting pod "simpletest.rc-q2g4m" in namespace "gc-2301" + Apr 5 19:10:34.229: INFO: Deleting pod "simpletest.rc-q5f9p" in namespace "gc-2301" + Apr 5 19:10:34.494: INFO: Deleting pod "simpletest.rc-qpwpc" in namespace "gc-2301" + Apr 5 19:10:34.508: INFO: Deleting pod "simpletest.rc-r2scz" in namespace "gc-2301" + Apr 5 19:10:34.518: INFO: Deleting pod "simpletest.rc-r8z7f" in namespace "gc-2301" + Apr 5 19:10:34.577: INFO: Deleting pod "simpletest.rc-rb4hc" in namespace "gc-2301" + Apr 5 19:10:34.625: INFO: Deleting pod "simpletest.rc-rgvqh" in namespace "gc-2301" + Apr 5 19:10:34.713: INFO: Deleting pod "simpletest.rc-rrnt8" in namespace "gc-2301" + Apr 5 19:10:34.899: INFO: Deleting pod "simpletest.rc-rv6qs" in namespace "gc-2301" + Apr 5 19:10:34.939: INFO: Deleting pod "simpletest.rc-s5zns" in namespace "gc-2301" + Apr 5 19:10:34.950: INFO: Deleting pod "simpletest.rc-sfztk" in namespace "gc-2301" + Apr 5 19:10:34.965: INFO: Deleting pod "simpletest.rc-sgvtm" in namespace "gc-2301" + Apr 5 19:10:34.989: INFO: Deleting pod "simpletest.rc-sh7wj" in namespace "gc-2301" + Apr 5 19:10:35.004: INFO: Deleting pod "simpletest.rc-sj9rb" in namespace "gc-2301" + Apr 5 19:10:35.154: INFO: Deleting pod "simpletest.rc-t8g9q" in namespace "gc-2301" + Apr 5 19:10:35.243: INFO: Deleting pod "simpletest.rc-tgrqx" in namespace "gc-2301" + Apr 5 19:10:35.253: INFO: Deleting pod "simpletest.rc-tk4kb" in namespace "gc-2301" + Apr 5 19:10:35.265: INFO: Deleting pod "simpletest.rc-tnl6b" in namespace "gc-2301" + Apr 5 19:10:35.282: INFO: Deleting pod "simpletest.rc-tr9cz" in namespace "gc-2301" + Apr 5 19:10:35.357: INFO: Deleting pod "simpletest.rc-trtd9" in namespace "gc-2301" + Apr 5 19:10:35.485: INFO: Deleting pod "simpletest.rc-v64hr" in namespace "gc-2301" + Apr 5 19:10:35.504: INFO: Deleting pod "simpletest.rc-v7px6" in namespace "gc-2301" + Apr 5 19:10:35.520: INFO: Deleting pod "simpletest.rc-v9c4v" in namespace "gc-2301" + Apr 5 19:10:35.539: INFO: Deleting pod "simpletest.rc-vcgpp" in namespace "gc-2301" + Apr 5 19:10:35.552: INFO: Deleting pod "simpletest.rc-w87xp" in namespace "gc-2301" + Apr 5 19:10:35.579: INFO: Deleting pod "simpletest.rc-wm9x2" in namespace "gc-2301" + Apr 5 19:10:35.596: INFO: Deleting pod "simpletest.rc-wwmph" in namespace "gc-2301" + Apr 5 19:10:35.615: INFO: Deleting pod "simpletest.rc-x2jtp" in namespace "gc-2301" + Apr 5 19:10:35.628: INFO: Deleting pod "simpletest.rc-x9md4" in namespace "gc-2301" + Apr 5 19:10:35.640: INFO: Deleting pod "simpletest.rc-xcbqh" in namespace "gc-2301" + Apr 5 19:10:35.649: INFO: Deleting pod "simpletest.rc-xdpn8" in namespace "gc-2301" + Apr 5 19:10:35.663: INFO: Deleting pod "simpletest.rc-zd2s9" in namespace "gc-2301" + Apr 5 19:10:35.676: INFO: Deleting pod "simpletest.rc-zg8fp" in namespace "gc-2301" + Apr 5 19:10:35.687: INFO: Deleting pod "simpletest.rc-zn4tg" in namespace "gc-2301" + Apr 5 19:10:35.700: INFO: Deleting pod "simpletest.rc-zsmvl" in namespace "gc-2301" + Apr 5 19:10:35.712: INFO: Deleting pod "simpletest.rc-zsth7" in namespace "gc-2301" + [AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/node/init/init.go:32 + Apr 5 19:10:35.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-2301" for this suite. 04/05/23 19:10:35.734 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:68 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:10:35.744 +Apr 5 19:10:35.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:10:35.745 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:10:35.76 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:10:35.762 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:68 +STEP: Creating secret with name secret-test-77716b97-3012-43c3-8062-112885c6c9d3 04/05/23 19:10:35.765 +STEP: Creating a pod to test consume secrets 04/05/23 19:10:35.77 +Apr 5 19:10:35.778: INFO: Waiting up to 5m0s for pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3" in namespace "secrets-6638" to be "Succeeded or Failed" +Apr 5 19:10:35.781: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.753808ms +Apr 5 19:10:37.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007087131s +Apr 5 19:10:39.926: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.147377696s +Apr 5 19:10:41.788: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009727214s +Apr 5 19:10:43.794: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 8.015730458s +Apr 5 19:10:45.787: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008592272s +Apr 5 19:10:47.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 12.007342693s +Apr 5 19:10:49.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 14.00812979s +Apr 5 19:10:51.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 16.007700923s +Apr 5 19:10:53.788: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 18.009584477s +Apr 5 19:10:55.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 20.006775812s +STEP: Saw pod success 04/05/23 19:10:55.785 +Apr 5 19:10:55.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3" satisfied condition "Succeeded or Failed" +Apr 5 19:10:55.789: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 container secret-volume-test: +STEP: delete the pod 04/05/23 19:10:55.805 +Apr 5 19:10:55.820: INFO: Waiting for pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 to disappear +Apr 5 19:10:55.827: INFO: Pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:10:55.827: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-6638" for this suite. 04/05/23 19:10:55.833 +------------------------------ +• [SLOW TEST] [20.095 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/common/storage/secrets_volume.go:68 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:10:35.744 + Apr 5 19:10:35.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:10:35.745 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:10:35.76 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:10:35.762 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:68 + STEP: Creating secret with name secret-test-77716b97-3012-43c3-8062-112885c6c9d3 04/05/23 19:10:35.765 + STEP: Creating a pod to test consume secrets 04/05/23 19:10:35.77 + Apr 5 19:10:35.778: INFO: Waiting up to 5m0s for pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3" in namespace "secrets-6638" to be "Succeeded or Failed" + Apr 5 19:10:35.781: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.753808ms + Apr 5 19:10:37.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007087131s + Apr 5 19:10:39.926: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.147377696s + Apr 5 19:10:41.788: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009727214s + Apr 5 19:10:43.794: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 8.015730458s + Apr 5 19:10:45.787: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 10.008592272s + Apr 5 19:10:47.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 12.007342693s + Apr 5 19:10:49.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 14.00812979s + Apr 5 19:10:51.786: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 16.007700923s + Apr 5 19:10:53.788: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Pending", Reason="", readiness=false. Elapsed: 18.009584477s + Apr 5 19:10:55.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 20.006775812s + STEP: Saw pod success 04/05/23 19:10:55.785 + Apr 5 19:10:55.785: INFO: Pod "pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3" satisfied condition "Succeeded or Failed" + Apr 5 19:10:55.789: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 container secret-volume-test: + STEP: delete the pod 04/05/23 19:10:55.805 + Apr 5 19:10:55.820: INFO: Waiting for pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 to disappear + Apr 5 19:10:55.827: INFO: Pod pod-secrets-238a2b28-212e-4835-bffd-d92c5d4e0fa3 no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:10:55.827: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-6638" for this suite. 04/05/23 19:10:55.833 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:119 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:10:55.84 +Apr 5 19:10:55.840: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:10:55.842 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:10:55.857 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:10:55.86 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:119 +STEP: Creating secret with name projected-secret-test-7a935558-1d1d-4421-a60f-0161fdb7e3a9 04/05/23 19:10:55.863 +STEP: Creating a pod to test consume secrets 04/05/23 19:10:55.869 +Apr 5 19:10:55.879: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2" in namespace "projected-5735" to be "Succeeded or Failed" +Apr 5 19:10:55.882: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.547074ms +Apr 5 19:10:57.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009380237s +Apr 5 19:10:59.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009305831s +Apr 5 19:11:01.886: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007856508s +Apr 5 19:11:03.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009647374s +STEP: Saw pod success 04/05/23 19:11:03.888 +Apr 5 19:11:03.889: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2" satisfied condition "Succeeded or Failed" +Apr 5 19:11:03.892: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 container secret-volume-test: +STEP: delete the pod 04/05/23 19:11:03.902 +Apr 5 19:11:03.914: INFO: Waiting for pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 to disappear +Apr 5 19:11:03.917: INFO: Pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:03.917: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-5735" for this suite. 04/05/23 19:11:03.922 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:119 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:10:55.84 + Apr 5 19:10:55.840: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:10:55.842 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:10:55.857 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:10:55.86 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:119 + STEP: Creating secret with name projected-secret-test-7a935558-1d1d-4421-a60f-0161fdb7e3a9 04/05/23 19:10:55.863 + STEP: Creating a pod to test consume secrets 04/05/23 19:10:55.869 + Apr 5 19:10:55.879: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2" in namespace "projected-5735" to be "Succeeded or Failed" + Apr 5 19:10:55.882: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.547074ms + Apr 5 19:10:57.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009380237s + Apr 5 19:10:59.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009305831s + Apr 5 19:11:01.886: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007856508s + Apr 5 19:11:03.888: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009647374s + STEP: Saw pod success 04/05/23 19:11:03.888 + Apr 5 19:11:03.889: INFO: Pod "pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2" satisfied condition "Succeeded or Failed" + Apr 5 19:11:03.892: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 container secret-volume-test: + STEP: delete the pod 04/05/23 19:11:03.902 + Apr 5 19:11:03.914: INFO: Waiting for pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 to disappear + Apr 5 19:11:03.917: INFO: Pod pod-projected-secrets-9fd1228a-6b52-4206-8015-95ac53a9fac2 no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:03.917: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-5735" for this suite. 04/05/23 19:11:03.922 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:442 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:03.93 +Apr 5 19:11:03.931: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:11:03.931 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:03.951 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:03.954 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:442 +STEP: set up a multi version CRD 04/05/23 19:11:03.957 +Apr 5 19:11:03.958: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: mark a version not serverd 04/05/23 19:11:10.621 +STEP: check the unserved version gets removed 04/05/23 19:11:10.643 +STEP: check the other version is not changed 04/05/23 19:11:14.609 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:21.010: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-1460" for this suite. 04/05/23 19:11:21.024 +------------------------------ +• [SLOW TEST] [17.099 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/apimachinery/crd_publish_openapi.go:442 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:03.93 + Apr 5 19:11:03.931: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:11:03.931 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:03.951 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:03.954 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:442 + STEP: set up a multi version CRD 04/05/23 19:11:03.957 + Apr 5 19:11:03.958: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: mark a version not serverd 04/05/23 19:11:10.621 + STEP: check the unserved version gets removed 04/05/23 19:11:10.643 + STEP: check the other version is not changed 04/05/23 19:11:14.609 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:21.010: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-1460" for this suite. 04/05/23 19:11:21.024 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] CSIStorageCapacity + should support CSIStorageCapacities API operations [Conformance] + test/e2e/storage/csistoragecapacity.go:49 +[BeforeEach] [sig-storage] CSIStorageCapacity + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:21.032 +Apr 5 19:11:21.032: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename csistoragecapacity 04/05/23 19:11:21.033 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:21.054 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:21.057 +[BeforeEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/metrics/init/init.go:31 +[It] should support CSIStorageCapacities API operations [Conformance] + test/e2e/storage/csistoragecapacity.go:49 +STEP: getting /apis 04/05/23 19:11:21.06 +STEP: getting /apis/storage.k8s.io 04/05/23 19:11:21.063 +STEP: getting /apis/storage.k8s.io/v1 04/05/23 19:11:21.064 +STEP: creating 04/05/23 19:11:21.065 +STEP: watching 04/05/23 19:11:21.08 +Apr 5 19:11:21.080: INFO: starting watch +STEP: getting 04/05/23 19:11:21.087 +STEP: listing in namespace 04/05/23 19:11:21.09 +STEP: listing across namespaces 04/05/23 19:11:21.093 +STEP: patching 04/05/23 19:11:21.096 +STEP: updating 04/05/23 19:11:21.104 +Apr 5 19:11:21.114: INFO: waiting for watch events with expected annotations in namespace +Apr 5 19:11:21.114: INFO: waiting for watch events with expected annotations across namespace +STEP: deleting 04/05/23 19:11:21.114 +STEP: deleting a collection 04/05/23 19:11:21.13 +[AfterEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:21.147: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + tear down framework | framework.go:193 +STEP: Destroying namespace "csistoragecapacity-6731" for this suite. 04/05/23 19:11:21.154 +------------------------------ +• [0.130 seconds] +[sig-storage] CSIStorageCapacity +test/e2e/storage/utils/framework.go:23 + should support CSIStorageCapacities API operations [Conformance] + test/e2e/storage/csistoragecapacity.go:49 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] CSIStorageCapacity + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:21.032 + Apr 5 19:11:21.032: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename csistoragecapacity 04/05/23 19:11:21.033 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:21.054 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:21.057 + [BeforeEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/metrics/init/init.go:31 + [It] should support CSIStorageCapacities API operations [Conformance] + test/e2e/storage/csistoragecapacity.go:49 + STEP: getting /apis 04/05/23 19:11:21.06 + STEP: getting /apis/storage.k8s.io 04/05/23 19:11:21.063 + STEP: getting /apis/storage.k8s.io/v1 04/05/23 19:11:21.064 + STEP: creating 04/05/23 19:11:21.065 + STEP: watching 04/05/23 19:11:21.08 + Apr 5 19:11:21.080: INFO: starting watch + STEP: getting 04/05/23 19:11:21.087 + STEP: listing in namespace 04/05/23 19:11:21.09 + STEP: listing across namespaces 04/05/23 19:11:21.093 + STEP: patching 04/05/23 19:11:21.096 + STEP: updating 04/05/23 19:11:21.104 + Apr 5 19:11:21.114: INFO: waiting for watch events with expected annotations in namespace + Apr 5 19:11:21.114: INFO: waiting for watch events with expected annotations across namespace + STEP: deleting 04/05/23 19:11:21.114 + STEP: deleting a collection 04/05/23 19:11:21.13 + [AfterEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:21.147: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] CSIStorageCapacity + tear down framework | framework.go:193 + STEP: Destroying namespace "csistoragecapacity-6731" for this suite. 04/05/23 19:11:21.154 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:67 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:21.166 +Apr 5 19:11:21.166: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:11:21.167 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:21.182 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:21.185 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:67 +STEP: Creating projection with secret that has name projected-secret-test-e55e397a-6d71-4257-9a8c-85155aa826b8 04/05/23 19:11:21.188 +STEP: Creating a pod to test consume secrets 04/05/23 19:11:21.195 +Apr 5 19:11:21.205: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a" in namespace "projected-9889" to be "Succeeded or Failed" +Apr 5 19:11:21.209: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 3.842203ms +Apr 5 19:11:23.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007697314s +Apr 5 19:11:25.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007492852s +Apr 5 19:11:27.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008131976s +Apr 5 19:11:29.214: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009244907s +STEP: Saw pod success 04/05/23 19:11:29.214 +Apr 5 19:11:29.215: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a" satisfied condition "Succeeded or Failed" +Apr 5 19:11:29.218: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a container projected-secret-volume-test: +STEP: delete the pod 04/05/23 19:11:29.236 +Apr 5 19:11:29.252: INFO: Waiting for pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a to disappear +Apr 5 19:11:29.255: INFO: Pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:29.255: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-9889" for this suite. 04/05/23 19:11:29.261 +------------------------------ +• [SLOW TEST] [8.102 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/common/storage/projected_secret.go:67 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:21.166 + Apr 5 19:11:21.166: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:11:21.167 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:21.182 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:21.185 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:67 + STEP: Creating projection with secret that has name projected-secret-test-e55e397a-6d71-4257-9a8c-85155aa826b8 04/05/23 19:11:21.188 + STEP: Creating a pod to test consume secrets 04/05/23 19:11:21.195 + Apr 5 19:11:21.205: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a" in namespace "projected-9889" to be "Succeeded or Failed" + Apr 5 19:11:21.209: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 3.842203ms + Apr 5 19:11:23.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007697314s + Apr 5 19:11:25.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007492852s + Apr 5 19:11:27.213: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008131976s + Apr 5 19:11:29.214: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009244907s + STEP: Saw pod success 04/05/23 19:11:29.214 + Apr 5 19:11:29.215: INFO: Pod "pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a" satisfied condition "Succeeded or Failed" + Apr 5 19:11:29.218: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a container projected-secret-volume-test: + STEP: delete the pod 04/05/23 19:11:29.236 + Apr 5 19:11:29.252: INFO: Waiting for pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a to disappear + Apr 5 19:11:29.255: INFO: Pod pod-projected-secrets-afca93eb-6702-429f-b65c-b1ab7e3f7b6a no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:29.255: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-9889" for this suite. 04/05/23 19:11:29.261 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-node] PodTemplates + should delete a collection of pod templates [Conformance] + test/e2e/common/node/podtemplates.go:122 +[BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:29.274 +Apr 5 19:11:29.274: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename podtemplate 04/05/23 19:11:29.275 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:29.293 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:29.295 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 +[It] should delete a collection of pod templates [Conformance] + test/e2e/common/node/podtemplates.go:122 +STEP: Create set of pod templates 04/05/23 19:11:29.298 +Apr 5 19:11:29.303: INFO: created test-podtemplate-1 +Apr 5 19:11:29.309: INFO: created test-podtemplate-2 +Apr 5 19:11:29.314: INFO: created test-podtemplate-3 +STEP: get a list of pod templates with a label in the current namespace 04/05/23 19:11:29.314 +STEP: delete collection of pod templates 04/05/23 19:11:29.318 +Apr 5 19:11:29.318: INFO: requesting DeleteCollection of pod templates +STEP: check that the list of pod templates matches the requested quantity 04/05/23 19:11:29.34 +Apr 5 19:11:29.340: INFO: requesting list of pod templates to confirm quantity +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:29.345: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 +STEP: Destroying namespace "podtemplate-1364" for this suite. 04/05/23 19:11:29.352 +------------------------------ +• [0.088 seconds] +[sig-node] PodTemplates +test/e2e/common/node/framework.go:23 + should delete a collection of pod templates [Conformance] + test/e2e/common/node/podtemplates.go:122 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:29.274 + Apr 5 19:11:29.274: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename podtemplate 04/05/23 19:11:29.275 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:29.293 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:29.295 + [BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 + [It] should delete a collection of pod templates [Conformance] + test/e2e/common/node/podtemplates.go:122 + STEP: Create set of pod templates 04/05/23 19:11:29.298 + Apr 5 19:11:29.303: INFO: created test-podtemplate-1 + Apr 5 19:11:29.309: INFO: created test-podtemplate-2 + Apr 5 19:11:29.314: INFO: created test-podtemplate-3 + STEP: get a list of pod templates with a label in the current namespace 04/05/23 19:11:29.314 + STEP: delete collection of pod templates 04/05/23 19:11:29.318 + Apr 5 19:11:29.318: INFO: requesting DeleteCollection of pod templates + STEP: check that the list of pod templates matches the requested quantity 04/05/23 19:11:29.34 + Apr 5 19:11:29.340: INFO: requesting list of pod templates to confirm quantity + [AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:29.345: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 + STEP: Destroying namespace "podtemplate-1364" for this suite. 04/05/23 19:11:29.352 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl describe + should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/kubectl/kubectl.go:1276 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:29.366 +Apr 5 19:11:29.366: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:11:29.367 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:29.384 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:29.387 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/kubectl/kubectl.go:1276 +Apr 5 19:11:29.391: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 create -f -' +Apr 5 19:11:30.901: INFO: stderr: "" +Apr 5 19:11:30.901: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +Apr 5 19:11:30.901: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 create -f -' +Apr 5 19:11:32.155: INFO: stderr: "" +Apr 5 19:11:32.155: INFO: stdout: "service/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. 04/05/23 19:11:32.155 +Apr 5 19:11:33.159: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:11:33.159: INFO: Found 0 / 1 +Apr 5 19:11:34.159: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:11:34.159: INFO: Found 0 / 1 +Apr 5 19:11:35.160: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:11:35.161: INFO: Found 0 / 1 +Apr 5 19:11:36.160: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:11:36.160: INFO: Found 1 / 1 +Apr 5 19:11:36.160: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +Apr 5 19:11:36.163: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:11:36.163: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Apr 5 19:11:36.163: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe pod agnhost-primary-q9hv8' +Apr 5 19:11:36.263: INFO: stderr: "" +Apr 5 19:11:36.263: INFO: stdout: "Name: agnhost-primary-q9hv8\nNamespace: kubectl-1506\nPriority: 0\nService Account: default\nNode: ttneyla26-md-0-8474989c68-rj4zb/195.17.150.192\nStart Time: Wed, 05 Apr 2023 19:11:30 +0000\nLabels: app=agnhost\n role=primary\nAnnotations: \nStatus: Running\nIP: 192.168.3.103\nIPs:\n IP: 192.168.3.103\nControlled By: ReplicationController/agnhost-primary\nContainers:\n agnhost-primary:\n Container ID: containerd://c5e21a11e9754686e4315cd5ea846a5cfd7c31686ac232b7a9a9a3ed199e914a\n Image: registry.k8s.io/e2e-test-images/agnhost:2.43\n Image ID: registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e\n Port: 6379/TCP\n Host Port: 0/TCP\n State: Running\n Started: Wed, 05 Apr 2023 19:11:34 +0000\n Ready: True\n Restart Count: 0\n Environment: \n Mounts:\n /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-r5lzt (ro)\nConditions:\n Type Status\n Initialized True \n Ready True \n ContainersReady True \n PodScheduled True \nVolumes:\n kube-api-access-r5lzt:\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 6s default-scheduler Successfully assigned kubectl-1506/agnhost-primary-q9hv8 to ttneyla26-md-0-8474989c68-rj4zb\n Normal Pulled 2s kubelet Container image \"registry.k8s.io/e2e-test-images/agnhost:2.43\" already present on machine\n Normal Created 2s kubelet Created container agnhost-primary\n Normal Started 2s kubelet Started container agnhost-primary\n" +Apr 5 19:11:36.263: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe rc agnhost-primary' +Apr 5 19:11:36.359: INFO: stderr: "" +Apr 5 19:11:36.359: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-1506\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: registry.k8s.io/e2e-test-images/agnhost:2.43\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 6s replication-controller Created pod: agnhost-primary-q9hv8\n" +Apr 5 19:11:36.359: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe service agnhost-primary' +Apr 5 19:11:36.451: INFO: stderr: "" +Apr 5 19:11:36.452: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-1506\nLabels: app=agnhost\n role=primary\nAnnotations: \nSelector: app=agnhost,role=primary\nType: ClusterIP\nIP Family Policy: SingleStack\nIP Families: IPv4\nIP: 10.129.115.82\nIPs: 10.129.115.82\nPort: 6379/TCP\nTargetPort: agnhost-server/TCP\nEndpoints: 192.168.3.103:6379\nSession Affinity: None\nEvents: \n" +Apr 5 19:11:36.458: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe node ttneyla26-49zvt' +Apr 5 19:11:36.603: INFO: stderr: "" +Apr 5 19:11:36.603: INFO: stdout: "Name: ttneyla26-49zvt\nRoles: control-plane\nLabels: beta.kubernetes.io/arch=amd64\n beta.kubernetes.io/instance-type=vsphere-vm.cpu-2.mem-8gb.os-ubuntu\n beta.kubernetes.io/os=linux\n kubernetes.io/arch=amd64\n kubernetes.io/hostname=ttneyla26-49zvt\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=vsphere-vm.cpu-2.mem-8gb.os-ubuntu\nAnnotations: cluster.x-k8s.io/cluster-name: ttneyla26\n cluster.x-k8s.io/cluster-namespace: eksa-system\n cluster.x-k8s.io/machine: ttneyla26-49zvt\n cluster.x-k8s.io/owner-kind: KubeadmControlPlane\n cluster.x-k8s.io/owner-name: ttneyla26\n csi.volume.kubernetes.io/nodeid: {\"csi.vsphere.vmware.com\":\"ttneyla26-49zvt\"}\n io.cilium.network.ipv4-cilium-host: 192.168.5.29\n io.cilium.network.ipv4-health-ip: 192.168.5.140\n io.cilium.network.ipv4-pod-cidr: 192.168.5.0/24\n kubeadm.alpha.kubernetes.io/cri-socket: unix:///var/run/containerd/containerd.sock\n node.alpha.kubernetes.io/ttl: 0\n volumes.kubernetes.io/controller-managed-attach-detach: true\nCreationTimestamp: Wed, 05 Apr 2023 16:23:17 +0000\nTaints: node-role.kubernetes.io/control-plane:NoSchedule\nUnschedulable: false\nLease:\n HolderIdentity: ttneyla26-49zvt\n AcquireTime: \n RenewTime: Wed, 05 Apr 2023 19:11:33 +0000\nConditions:\n Type Status LastHeartbeatTime LastTransitionTime Reason Message\n ---- ------ ----------------- ------------------ ------ -------\n MemoryPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasSufficientMemory kubelet has sufficient memory available\n DiskPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasNoDiskPressure kubelet has no disk pressure\n PIDPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasSufficientPID kubelet has sufficient PID available\n Ready True Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:36:11 +0000 KubeletReady kubelet is posting ready status. AppArmor enabled\nAddresses:\n Hostname: ttneyla26-49zvt\n InternalIP: 195.17.9.109\n ExternalIP: 195.17.9.109\nCapacity:\n cpu: 2\n ephemeral-storage: 25625852Ki\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 8148716Ki\n pods: 110\nAllocatable:\n cpu: 2\n ephemeral-storage: 23616785165\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 8046316Ki\n pods: 110\nSystem Info:\n Machine ID: ea083826da8949fe92fdc52089cb7588\n System UUID: 8f851a42-e0d9-ac45-1fd6-b7549da55e8d\n Boot ID: 375e4b8c-509f-46b9-87c8-b5b7f4b9afcb\n Kernel Version: 5.4.0-146-generic\n OS Image: Ubuntu 20.04.6 LTS\n Operating System: linux\n Architecture: amd64\n Container Runtime Version: containerd://1.6.19\n Kubelet Version: v1.26.2-eks-c3ba22f\n Kube-Proxy Version: v1.26.2-eks-c3ba22f\nPodCIDR: 192.168.5.0/24\nPodCIDRs: 192.168.5.0/24\nProviderID: vsphere://421a858f-d9e0-45ac-1fd6-b7549da55e8d\nNon-terminated Pods: (10 in total)\n Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits Age\n --------- ---- ------------ ---------- --------------- ------------- ---\n eksa-packages ecr-credential-provider-package-kmv96 0 (0%) 0 (0%) 0 (0%) 0 (0%) 155m\n kube-system cilium-q787x 100m (5%) 0 (0%) 100Mi (1%) 0 (0%) 168m\n kube-system kube-apiserver-ttneyla26-49zvt 250m (12%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system kube-controller-manager-ttneyla26-49zvt 200m (10%) 0 (0%) 0 (0%) 0 (0%) 167m\n kube-system kube-proxy-6qvd9 0 (0%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system kube-scheduler-ttneyla26-49zvt 100m (5%) 0 (0%) 0 (0%) 0 (0%) 166m\n kube-system kube-vip-ttneyla26-49zvt 0 (0%) 0 (0%) 0 (0%) 0 (0%) 166m\n kube-system vsphere-cloud-controller-manager-njkbw 200m (10%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system vsphere-csi-node-nwd5h 0 (0%) 0 (0%) 0 (0%) 0 (0%) 168m\n sonobuoy sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-mvs6s 0 (0%) 0 (0%) 0 (0%) 0 (0%) 35m\nAllocated resources:\n (Total limits may be over 100 percent, i.e., overcommitted.)\n Resource Requests Limits\n -------- -------- ------\n cpu 850m (42%) 0 (0%)\n memory 100Mi (1%) 0 (0%)\n ephemeral-storage 0 (0%) 0 (0%)\n hugepages-1Gi 0 (0%) 0 (0%)\n hugepages-2Mi 0 (0%) 0 (0%)\nEvents: \n" +Apr 5 19:11:36.604: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe namespace kubectl-1506' +Apr 5 19:11:36.699: INFO: stderr: "" +Apr 5 19:11:36.699: INFO: stdout: "Name: kubectl-1506\nLabels: e2e-framework=kubectl\n e2e-run=60fac2e7-2f67-405e-b863-2e4212768928\n kubernetes.io/metadata.name=kubectl-1506\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/node/init/init.go:32 +Apr 5 19:11:36.699: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-1506" for this suite. 04/05/23 19:11:36.705 +------------------------------ +• [SLOW TEST] [7.347 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl describe + test/e2e/kubectl/kubectl.go:1270 + should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/kubectl/kubectl.go:1276 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:29.366 + Apr 5 19:11:29.366: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:11:29.367 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:29.384 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:29.387 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/kubectl/kubectl.go:1276 + Apr 5 19:11:29.391: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 create -f -' + Apr 5 19:11:30.901: INFO: stderr: "" + Apr 5 19:11:30.901: INFO: stdout: "replicationcontroller/agnhost-primary created\n" + Apr 5 19:11:30.901: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 create -f -' + Apr 5 19:11:32.155: INFO: stderr: "" + Apr 5 19:11:32.155: INFO: stdout: "service/agnhost-primary created\n" + STEP: Waiting for Agnhost primary to start. 04/05/23 19:11:32.155 + Apr 5 19:11:33.159: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:11:33.159: INFO: Found 0 / 1 + Apr 5 19:11:34.159: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:11:34.159: INFO: Found 0 / 1 + Apr 5 19:11:35.160: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:11:35.161: INFO: Found 0 / 1 + Apr 5 19:11:36.160: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:11:36.160: INFO: Found 1 / 1 + Apr 5 19:11:36.160: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 + Apr 5 19:11:36.163: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:11:36.163: INFO: ForEach: Found 1 pods from the filter. Now looping through them. + Apr 5 19:11:36.163: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe pod agnhost-primary-q9hv8' + Apr 5 19:11:36.263: INFO: stderr: "" + Apr 5 19:11:36.263: INFO: stdout: "Name: agnhost-primary-q9hv8\nNamespace: kubectl-1506\nPriority: 0\nService Account: default\nNode: ttneyla26-md-0-8474989c68-rj4zb/195.17.150.192\nStart Time: Wed, 05 Apr 2023 19:11:30 +0000\nLabels: app=agnhost\n role=primary\nAnnotations: \nStatus: Running\nIP: 192.168.3.103\nIPs:\n IP: 192.168.3.103\nControlled By: ReplicationController/agnhost-primary\nContainers:\n agnhost-primary:\n Container ID: containerd://c5e21a11e9754686e4315cd5ea846a5cfd7c31686ac232b7a9a9a3ed199e914a\n Image: registry.k8s.io/e2e-test-images/agnhost:2.43\n Image ID: registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e\n Port: 6379/TCP\n Host Port: 0/TCP\n State: Running\n Started: Wed, 05 Apr 2023 19:11:34 +0000\n Ready: True\n Restart Count: 0\n Environment: \n Mounts:\n /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-r5lzt (ro)\nConditions:\n Type Status\n Initialized True \n Ready True \n ContainersReady True \n PodScheduled True \nVolumes:\n kube-api-access-r5lzt:\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 6s default-scheduler Successfully assigned kubectl-1506/agnhost-primary-q9hv8 to ttneyla26-md-0-8474989c68-rj4zb\n Normal Pulled 2s kubelet Container image \"registry.k8s.io/e2e-test-images/agnhost:2.43\" already present on machine\n Normal Created 2s kubelet Created container agnhost-primary\n Normal Started 2s kubelet Started container agnhost-primary\n" + Apr 5 19:11:36.263: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe rc agnhost-primary' + Apr 5 19:11:36.359: INFO: stderr: "" + Apr 5 19:11:36.359: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-1506\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: registry.k8s.io/e2e-test-images/agnhost:2.43\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 6s replication-controller Created pod: agnhost-primary-q9hv8\n" + Apr 5 19:11:36.359: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe service agnhost-primary' + Apr 5 19:11:36.451: INFO: stderr: "" + Apr 5 19:11:36.452: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-1506\nLabels: app=agnhost\n role=primary\nAnnotations: \nSelector: app=agnhost,role=primary\nType: ClusterIP\nIP Family Policy: SingleStack\nIP Families: IPv4\nIP: 10.129.115.82\nIPs: 10.129.115.82\nPort: 6379/TCP\nTargetPort: agnhost-server/TCP\nEndpoints: 192.168.3.103:6379\nSession Affinity: None\nEvents: \n" + Apr 5 19:11:36.458: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe node ttneyla26-49zvt' + Apr 5 19:11:36.603: INFO: stderr: "" + Apr 5 19:11:36.603: INFO: stdout: "Name: ttneyla26-49zvt\nRoles: control-plane\nLabels: beta.kubernetes.io/arch=amd64\n beta.kubernetes.io/instance-type=vsphere-vm.cpu-2.mem-8gb.os-ubuntu\n beta.kubernetes.io/os=linux\n kubernetes.io/arch=amd64\n kubernetes.io/hostname=ttneyla26-49zvt\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=vsphere-vm.cpu-2.mem-8gb.os-ubuntu\nAnnotations: cluster.x-k8s.io/cluster-name: ttneyla26\n cluster.x-k8s.io/cluster-namespace: eksa-system\n cluster.x-k8s.io/machine: ttneyla26-49zvt\n cluster.x-k8s.io/owner-kind: KubeadmControlPlane\n cluster.x-k8s.io/owner-name: ttneyla26\n csi.volume.kubernetes.io/nodeid: {\"csi.vsphere.vmware.com\":\"ttneyla26-49zvt\"}\n io.cilium.network.ipv4-cilium-host: 192.168.5.29\n io.cilium.network.ipv4-health-ip: 192.168.5.140\n io.cilium.network.ipv4-pod-cidr: 192.168.5.0/24\n kubeadm.alpha.kubernetes.io/cri-socket: unix:///var/run/containerd/containerd.sock\n node.alpha.kubernetes.io/ttl: 0\n volumes.kubernetes.io/controller-managed-attach-detach: true\nCreationTimestamp: Wed, 05 Apr 2023 16:23:17 +0000\nTaints: node-role.kubernetes.io/control-plane:NoSchedule\nUnschedulable: false\nLease:\n HolderIdentity: ttneyla26-49zvt\n AcquireTime: \n RenewTime: Wed, 05 Apr 2023 19:11:33 +0000\nConditions:\n Type Status LastHeartbeatTime LastTransitionTime Reason Message\n ---- ------ ----------------- ------------------ ------ -------\n MemoryPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasSufficientMemory kubelet has sufficient memory available\n DiskPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasNoDiskPressure kubelet has no disk pressure\n PIDPressure False Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:23:16 +0000 KubeletHasSufficientPID kubelet has sufficient PID available\n Ready True Wed, 05 Apr 2023 19:07:14 +0000 Wed, 05 Apr 2023 16:36:11 +0000 KubeletReady kubelet is posting ready status. AppArmor enabled\nAddresses:\n Hostname: ttneyla26-49zvt\n InternalIP: 195.17.9.109\n ExternalIP: 195.17.9.109\nCapacity:\n cpu: 2\n ephemeral-storage: 25625852Ki\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 8148716Ki\n pods: 110\nAllocatable:\n cpu: 2\n ephemeral-storage: 23616785165\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 8046316Ki\n pods: 110\nSystem Info:\n Machine ID: ea083826da8949fe92fdc52089cb7588\n System UUID: 8f851a42-e0d9-ac45-1fd6-b7549da55e8d\n Boot ID: 375e4b8c-509f-46b9-87c8-b5b7f4b9afcb\n Kernel Version: 5.4.0-146-generic\n OS Image: Ubuntu 20.04.6 LTS\n Operating System: linux\n Architecture: amd64\n Container Runtime Version: containerd://1.6.19\n Kubelet Version: v1.26.2-eks-c3ba22f\n Kube-Proxy Version: v1.26.2-eks-c3ba22f\nPodCIDR: 192.168.5.0/24\nPodCIDRs: 192.168.5.0/24\nProviderID: vsphere://421a858f-d9e0-45ac-1fd6-b7549da55e8d\nNon-terminated Pods: (10 in total)\n Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits Age\n --------- ---- ------------ ---------- --------------- ------------- ---\n eksa-packages ecr-credential-provider-package-kmv96 0 (0%) 0 (0%) 0 (0%) 0 (0%) 155m\n kube-system cilium-q787x 100m (5%) 0 (0%) 100Mi (1%) 0 (0%) 168m\n kube-system kube-apiserver-ttneyla26-49zvt 250m (12%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system kube-controller-manager-ttneyla26-49zvt 200m (10%) 0 (0%) 0 (0%) 0 (0%) 167m\n kube-system kube-proxy-6qvd9 0 (0%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system kube-scheduler-ttneyla26-49zvt 100m (5%) 0 (0%) 0 (0%) 0 (0%) 166m\n kube-system kube-vip-ttneyla26-49zvt 0 (0%) 0 (0%) 0 (0%) 0 (0%) 166m\n kube-system vsphere-cloud-controller-manager-njkbw 200m (10%) 0 (0%) 0 (0%) 0 (0%) 168m\n kube-system vsphere-csi-node-nwd5h 0 (0%) 0 (0%) 0 (0%) 0 (0%) 168m\n sonobuoy sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-mvs6s 0 (0%) 0 (0%) 0 (0%) 0 (0%) 35m\nAllocated resources:\n (Total limits may be over 100 percent, i.e., overcommitted.)\n Resource Requests Limits\n -------- -------- ------\n cpu 850m (42%) 0 (0%)\n memory 100Mi (1%) 0 (0%)\n ephemeral-storage 0 (0%) 0 (0%)\n hugepages-1Gi 0 (0%) 0 (0%)\n hugepages-2Mi 0 (0%) 0 (0%)\nEvents: \n" + Apr 5 19:11:36.604: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1506 describe namespace kubectl-1506' + Apr 5 19:11:36.699: INFO: stderr: "" + Apr 5 19:11:36.699: INFO: stdout: "Name: kubectl-1506\nLabels: e2e-framework=kubectl\n e2e-run=60fac2e7-2f67-405e-b863-2e4212768928\n kubernetes.io/metadata.name=kubectl-1506\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/node/init/init.go:32 + Apr 5 19:11:36.699: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-1506" for this suite. 04/05/23 19:11:36.705 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:130 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:36.716 +Apr 5 19:11:36.716: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:11:36.718 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:36.731 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:36.733 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:130 +STEP: Creating the pod 04/05/23 19:11:36.736 +Apr 5 19:11:36.743: INFO: Waiting up to 5m0s for pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" in namespace "projected-5664" to be "running and ready" +Apr 5 19:11:36.746: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 3.220219ms +Apr 5 19:11:36.746: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:11:38.752: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008430696s +Apr 5 19:11:38.752: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:11:40.752: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008659293s +Apr 5 19:11:40.752: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:11:42.751: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Running", Reason="", readiness=true. Elapsed: 6.008000397s +Apr 5 19:11:42.751: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Running (Ready = true) +Apr 5 19:11:42.751: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" satisfied condition "running and ready" +Apr 5 19:11:43.275: INFO: Successfully updated pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:45.292: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-5664" for this suite. 04/05/23 19:11:45.298 +------------------------------ +• [SLOW TEST] [8.592 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:130 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:36.716 + Apr 5 19:11:36.716: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:11:36.718 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:36.731 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:36.733 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:130 + STEP: Creating the pod 04/05/23 19:11:36.736 + Apr 5 19:11:36.743: INFO: Waiting up to 5m0s for pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" in namespace "projected-5664" to be "running and ready" + Apr 5 19:11:36.746: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 3.220219ms + Apr 5 19:11:36.746: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:11:38.752: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008430696s + Apr 5 19:11:38.752: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:11:40.752: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008659293s + Apr 5 19:11:40.752: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:11:42.751: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a": Phase="Running", Reason="", readiness=true. Elapsed: 6.008000397s + Apr 5 19:11:42.751: INFO: The phase of Pod labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a is Running (Ready = true) + Apr 5 19:11:42.751: INFO: Pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" satisfied condition "running and ready" + Apr 5 19:11:43.275: INFO: Successfully updated pod "labelsupdatee7e4651d-64eb-4475-8886-7d7ac29ca88a" + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:45.292: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-5664" for this suite. 04/05/23 19:11:45.298 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:56 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:45.315 +Apr 5 19:11:45.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:11:45.316 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:45.331 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:45.335 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:56 +STEP: Creating projection with secret that has name projected-secret-test-c0a0e0ab-9d44-4fd7-a4af-60f92736a114 04/05/23 19:11:45.339 +STEP: Creating a pod to test consume secrets 04/05/23 19:11:45.347 +Apr 5 19:11:45.355: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f" in namespace "projected-8285" to be "Succeeded or Failed" +Apr 5 19:11:45.358: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 3.603011ms +Apr 5 19:11:47.362: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007216711s +Apr 5 19:11:49.362: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007537014s +Apr 5 19:11:51.363: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008074172s +Apr 5 19:11:53.364: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008912491s +STEP: Saw pod success 04/05/23 19:11:53.364 +Apr 5 19:11:53.364: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f" satisfied condition "Succeeded or Failed" +Apr 5 19:11:53.367: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f container projected-secret-volume-test: +STEP: delete the pod 04/05/23 19:11:53.375 +Apr 5 19:11:53.390: INFO: Waiting for pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f to disappear +Apr 5 19:11:53.393: INFO: Pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:53.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-8285" for this suite. 04/05/23 19:11:53.399 +------------------------------ +• [SLOW TEST] [8.092 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:56 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:45.315 + Apr 5 19:11:45.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:11:45.316 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:45.331 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:45.335 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:56 + STEP: Creating projection with secret that has name projected-secret-test-c0a0e0ab-9d44-4fd7-a4af-60f92736a114 04/05/23 19:11:45.339 + STEP: Creating a pod to test consume secrets 04/05/23 19:11:45.347 + Apr 5 19:11:45.355: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f" in namespace "projected-8285" to be "Succeeded or Failed" + Apr 5 19:11:45.358: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 3.603011ms + Apr 5 19:11:47.362: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007216711s + Apr 5 19:11:49.362: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007537014s + Apr 5 19:11:51.363: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008074172s + Apr 5 19:11:53.364: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008912491s + STEP: Saw pod success 04/05/23 19:11:53.364 + Apr 5 19:11:53.364: INFO: Pod "pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f" satisfied condition "Succeeded or Failed" + Apr 5 19:11:53.367: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f container projected-secret-volume-test: + STEP: delete the pod 04/05/23 19:11:53.375 + Apr 5 19:11:53.390: INFO: Waiting for pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f to disappear + Apr 5 19:11:53.393: INFO: Pod pod-projected-secrets-2f7bd987-d7e0-4930-8802-5be93992644f no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:53.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-8285" for this suite. 04/05/23 19:11:53.399 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:147 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:53.413 +Apr 5 19:11:53.413: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:11:53.414 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:53.428 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:53.431 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:147 +STEP: Creating a pod to test emptydir 0777 on tmpfs 04/05/23 19:11:53.434 +Apr 5 19:11:53.443: INFO: Waiting up to 5m0s for pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a" in namespace "emptydir-473" to be "Succeeded or Failed" +Apr 5 19:11:53.446: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.734781ms +Apr 5 19:11:55.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007880388s +Apr 5 19:11:57.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007261984s +Apr 5 19:11:59.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.007554146s +STEP: Saw pod success 04/05/23 19:11:59.451 +Apr 5 19:11:59.452: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a" satisfied condition "Succeeded or Failed" +Apr 5 19:11:59.454: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a container test-container: +STEP: delete the pod 04/05/23 19:11:59.461 +Apr 5 19:11:59.476: INFO: Waiting for pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a to disappear +Apr 5 19:11:59.478: INFO: Pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:11:59.478: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-473" for this suite. 04/05/23 19:11:59.483 +------------------------------ +• [SLOW TEST] [6.076 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:147 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:53.413 + Apr 5 19:11:53.413: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:11:53.414 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:53.428 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:53.431 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:147 + STEP: Creating a pod to test emptydir 0777 on tmpfs 04/05/23 19:11:53.434 + Apr 5 19:11:53.443: INFO: Waiting up to 5m0s for pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a" in namespace "emptydir-473" to be "Succeeded or Failed" + Apr 5 19:11:53.446: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.734781ms + Apr 5 19:11:55.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007880388s + Apr 5 19:11:57.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007261984s + Apr 5 19:11:59.451: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.007554146s + STEP: Saw pod success 04/05/23 19:11:59.451 + Apr 5 19:11:59.452: INFO: Pod "pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a" satisfied condition "Succeeded or Failed" + Apr 5 19:11:59.454: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a container test-container: + STEP: delete the pod 04/05/23 19:11:59.461 + Apr 5 19:11:59.476: INFO: Waiting for pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a to disappear + Apr 5 19:11:59.478: INFO: Pod pod-5b1a70fb-f88d-4641-9946-a42eecb56e8a no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:11:59.478: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-473" for this suite. 04/05/23 19:11:59.483 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:124 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:11:59.498 +Apr 5 19:11:59.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:11:59.499 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:59.515 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:59.518 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:124 +STEP: Creating configMap with name configmap-test-upd-125526e3-9326-4e89-92d1-c622a37065a2 04/05/23 19:11:59.526 +STEP: Creating the pod 04/05/23 19:11:59.532 +Apr 5 19:11:59.540: INFO: Waiting up to 5m0s for pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44" in namespace "configmap-5608" to be "running and ready" +Apr 5 19:11:59.548: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Pending", Reason="", readiness=false. Elapsed: 8.086097ms +Apr 5 19:11:59.548: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:12:01.554: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014100109s +Apr 5 19:12:01.554: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:12:03.553: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Running", Reason="", readiness=true. Elapsed: 4.013213581s +Apr 5 19:12:03.553: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Running (Ready = true) +Apr 5 19:12:03.553: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44" satisfied condition "running and ready" +STEP: Updating configmap configmap-test-upd-125526e3-9326-4e89-92d1-c622a37065a2 04/05/23 19:12:03.564 +STEP: waiting to observe update in volume 04/05/23 19:12:03.568 +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:05.584: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-5608" for this suite. 04/05/23 19:12:05.59 +------------------------------ +• [SLOW TEST] [6.099 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:124 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:11:59.498 + Apr 5 19:11:59.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:11:59.499 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:11:59.515 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:11:59.518 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:124 + STEP: Creating configMap with name configmap-test-upd-125526e3-9326-4e89-92d1-c622a37065a2 04/05/23 19:11:59.526 + STEP: Creating the pod 04/05/23 19:11:59.532 + Apr 5 19:11:59.540: INFO: Waiting up to 5m0s for pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44" in namespace "configmap-5608" to be "running and ready" + Apr 5 19:11:59.548: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Pending", Reason="", readiness=false. Elapsed: 8.086097ms + Apr 5 19:11:59.548: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:12:01.554: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014100109s + Apr 5 19:12:01.554: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:12:03.553: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44": Phase="Running", Reason="", readiness=true. Elapsed: 4.013213581s + Apr 5 19:12:03.553: INFO: The phase of Pod pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44 is Running (Ready = true) + Apr 5 19:12:03.553: INFO: Pod "pod-configmaps-7e7579e7-93ed-4c15-b8ec-a207287b9a44" satisfied condition "running and ready" + STEP: Updating configmap configmap-test-upd-125526e3-9326-4e89-92d1-c622a37065a2 04/05/23 19:12:03.564 + STEP: waiting to observe update in volume 04/05/23 19:12:03.568 + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:05.584: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-5608" for this suite. 04/05/23 19:12:05.59 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should deny crd creation [Conformance] + test/e2e/apimachinery/webhook.go:308 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:05.598 +Apr 5 19:12:05.598: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:12:05.599 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:05.616 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:05.619 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:12:05.642 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:12:06.034 +STEP: Deploying the webhook pod 04/05/23 19:12:06.042 +STEP: Wait for the deployment to be ready 04/05/23 19:12:06.061 +Apr 5 19:12:06.074: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:12:08.087: 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(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:12:10.091: 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(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:12:12.092 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:12:12.114 +Apr 5 19:12:13.117: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should deny crd creation [Conformance] + test/e2e/apimachinery/webhook.go:308 +STEP: Registering the crd webhook via the AdmissionRegistration API 04/05/23 19:12:13.122 +STEP: Creating a custom resource definition that should be denied by the webhook 04/05/23 19:12:13.139 +Apr 5 19:12:13.140: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:13.157: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-5097" for this suite. 04/05/23 19:12:13.243 +STEP: Destroying namespace "webhook-5097-markers" for this suite. 04/05/23 19:12:13.252 +------------------------------ +• [SLOW TEST] [7.664 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should deny crd creation [Conformance] + test/e2e/apimachinery/webhook.go:308 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:05.598 + Apr 5 19:12:05.598: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:12:05.599 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:05.616 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:05.619 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:12:05.642 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:12:06.034 + STEP: Deploying the webhook pod 04/05/23 19:12:06.042 + STEP: Wait for the deployment to be ready 04/05/23 19:12:06.061 + Apr 5 19:12:06.074: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:12:08.087: 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(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:12:10.091: 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(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 12, 6, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:12:12.092 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:12:12.114 + Apr 5 19:12:13.117: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should deny crd creation [Conformance] + test/e2e/apimachinery/webhook.go:308 + STEP: Registering the crd webhook via the AdmissionRegistration API 04/05/23 19:12:13.122 + STEP: Creating a custom resource definition that should be denied by the webhook 04/05/23 19:12:13.139 + Apr 5 19:12:13.140: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:13.157: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-5097" for this suite. 04/05/23 19:12:13.243 + STEP: Destroying namespace "webhook-5097-markers" for this suite. 04/05/23 19:12:13.252 + << End Captured GinkgoWriter Output +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should patch a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:268 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:13.264 +Apr 5 19:12:13.264: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 19:12:13.265 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.28 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.283 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should patch a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:268 +STEP: creating a Namespace 04/05/23 19:12:13.288 +STEP: patching the Namespace 04/05/23 19:12:13.302 +STEP: get the Namespace and ensuring it has the label 04/05/23 19:12:13.309 +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:13.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-5135" for this suite. 04/05/23 19:12:13.317 +STEP: Destroying namespace "nspatchtest-78a1ac31-6997-4b45-9222-ddf9f680eba6-1401" for this suite. 04/05/23 19:12:13.323 +------------------------------ +• [0.066 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should patch a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:268 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:13.264 + Apr 5 19:12:13.264: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 19:12:13.265 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.28 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.283 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should patch a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:268 + STEP: creating a Namespace 04/05/23 19:12:13.288 + STEP: patching the Namespace 04/05/23 19:12:13.302 + STEP: get the Namespace and ensuring it has the label 04/05/23 19:12:13.309 + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:13.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-5135" for this suite. 04/05/23 19:12:13.317 + STEP: Destroying namespace "nspatchtest-78a1ac31-6997-4b45-9222-ddf9f680eba6-1401" for this suite. 04/05/23 19:12:13.323 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-auth] ServiceAccounts + should update a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:810 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:13.336 +Apr 5 19:12:13.336: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:12:13.339 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.358 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.36 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should update a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:810 +STEP: Creating ServiceAccount "e2e-sa-rrdbk" 04/05/23 19:12:13.363 +Apr 5 19:12:13.368: INFO: AutomountServiceAccountToken: false +STEP: Updating ServiceAccount "e2e-sa-rrdbk" 04/05/23 19:12:13.368 +Apr 5 19:12:13.376: INFO: AutomountServiceAccountToken: true +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:13.376: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-8903" for this suite. 04/05/23 19:12:13.384 +------------------------------ +• [0.056 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should update a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:810 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:13.336 + Apr 5 19:12:13.336: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:12:13.339 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.358 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.36 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should update a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:810 + STEP: Creating ServiceAccount "e2e-sa-rrdbk" 04/05/23 19:12:13.363 + Apr 5 19:12:13.368: INFO: AutomountServiceAccountToken: false + STEP: Updating ServiceAccount "e2e-sa-rrdbk" 04/05/23 19:12:13.368 + Apr 5 19:12:13.376: INFO: AutomountServiceAccountToken: true + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:13.376: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-8903" for this suite. 04/05/23 19:12:13.384 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/apimachinery/resource_quota.go:75 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:13.394 +Apr 5 19:12:13.394: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:12:13.395 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.408 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.411 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/apimachinery/resource_quota.go:75 +STEP: Counting existing ResourceQuota 04/05/23 19:12:13.413 +STEP: Creating a ResourceQuota 04/05/23 19:12:18.418 +STEP: Ensuring resource quota status is calculated 04/05/23 19:12:18.423 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:20.427: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-5617" for this suite. 04/05/23 19:12:20.441 +------------------------------ +• [SLOW TEST] [7.056 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/apimachinery/resource_quota.go:75 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:13.394 + Apr 5 19:12:13.394: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:12:13.395 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:13.408 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:13.411 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/apimachinery/resource_quota.go:75 + STEP: Counting existing ResourceQuota 04/05/23 19:12:13.413 + STEP: Creating a ResourceQuota 04/05/23 19:12:18.418 + STEP: Ensuring resource quota status is calculated 04/05/23 19:12:18.423 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:20.427: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-5617" for this suite. 04/05/23 19:12:20.441 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should be able to start watching from a specific resource version [Conformance] + test/e2e/apimachinery/watch.go:142 +[BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:20.453 +Apr 5 19:12:20.453: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename watch 04/05/23 19:12:20.455 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:20.472 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:20.477 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to start watching from a specific resource version [Conformance] + test/e2e/apimachinery/watch.go:142 +STEP: creating a new configmap 04/05/23 19:12:20.482 +STEP: modifying the configmap once 04/05/23 19:12:20.487 +STEP: modifying the configmap a second time 04/05/23 19:12:20.496 +STEP: deleting the configmap 04/05/23 19:12:20.505 +STEP: creating a watch on configmaps from the resource version returned by the first update 04/05/23 19:12:20.512 +STEP: Expecting to observe notifications for all changes to the configmap after the first update 04/05/23 19:12:20.513 +Apr 5 19:12:20.514: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-7293 c03ea870-5e51-4783-aa52-0fed4b5eac13 99426 0 2023-04-05 19:12:20 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2023-04-05 19:12:20 +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,} +Apr 5 19:12:20.514: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-7293 c03ea870-5e51-4783-aa52-0fed4b5eac13 99427 0 2023-04-05 19:12:20 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2023-04-05 19:12:20 +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/node/init/init.go:32 +Apr 5 19:12:20.514: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 +STEP: Destroying namespace "watch-7293" for this suite. 04/05/23 19:12:20.521 +------------------------------ +• [0.076 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should be able to start watching from a specific resource version [Conformance] + test/e2e/apimachinery/watch.go:142 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:20.453 + Apr 5 19:12:20.453: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename watch 04/05/23 19:12:20.455 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:20.472 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:20.477 + [BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to start watching from a specific resource version [Conformance] + test/e2e/apimachinery/watch.go:142 + STEP: creating a new configmap 04/05/23 19:12:20.482 + STEP: modifying the configmap once 04/05/23 19:12:20.487 + STEP: modifying the configmap a second time 04/05/23 19:12:20.496 + STEP: deleting the configmap 04/05/23 19:12:20.505 + STEP: creating a watch on configmaps from the resource version returned by the first update 04/05/23 19:12:20.512 + STEP: Expecting to observe notifications for all changes to the configmap after the first update 04/05/23 19:12:20.513 + Apr 5 19:12:20.514: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-7293 c03ea870-5e51-4783-aa52-0fed4b5eac13 99426 0 2023-04-05 19:12:20 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2023-04-05 19:12:20 +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,} + Apr 5 19:12:20.514: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-7293 c03ea870-5e51-4783-aa52-0fed4b5eac13 99427 0 2023-04-05 19:12:20 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2023-04-05 19:12:20 +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/node/init/init.go:32 + Apr 5 19:12:20.514: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 + STEP: Destroying namespace "watch-7293" for this suite. 04/05/23 19:12:20.521 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:207 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:20.533 +Apr 5 19:12:20.533: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:12:20.534 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:20.55 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:20.554 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:207 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:12:20.557 +Apr 5 19:12:20.566: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58" in namespace "projected-9314" to be "Succeeded or Failed" +Apr 5 19:12:20.573: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Pending", Reason="", readiness=false. Elapsed: 7.026771ms +Apr 5 19:12:22.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012765577s +Apr 5 19:12:24.577: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Running", Reason="", readiness=true. Elapsed: 4.011796662s +Apr 5 19:12:26.577: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Running", Reason="", readiness=false. Elapsed: 6.011406693s +Apr 5 19:12:28.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012254645s +STEP: Saw pod success 04/05/23 19:12:28.578 +Apr 5 19:12:28.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58" satisfied condition "Succeeded or Failed" +Apr 5 19:12:28.582: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 container client-container: +STEP: delete the pod 04/05/23 19:12:28.59 +Apr 5 19:12:28.605: INFO: Waiting for pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 to disappear +Apr 5 19:12:28.608: INFO: Pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:12:28.609: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-9314" for this suite. 04/05/23 19:12:28.614 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:207 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:20.533 + Apr 5 19:12:20.533: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:12:20.534 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:20.55 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:20.554 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:207 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:12:20.557 + Apr 5 19:12:20.566: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58" in namespace "projected-9314" to be "Succeeded or Failed" + Apr 5 19:12:20.573: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Pending", Reason="", readiness=false. Elapsed: 7.026771ms + Apr 5 19:12:22.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012765577s + Apr 5 19:12:24.577: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Running", Reason="", readiness=true. Elapsed: 4.011796662s + Apr 5 19:12:26.577: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Running", Reason="", readiness=false. Elapsed: 6.011406693s + Apr 5 19:12:28.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012254645s + STEP: Saw pod success 04/05/23 19:12:28.578 + Apr 5 19:12:28.578: INFO: Pod "downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58" satisfied condition "Succeeded or Failed" + Apr 5 19:12:28.582: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 container client-container: + STEP: delete the pod 04/05/23 19:12:28.59 + Apr 5 19:12:28.605: INFO: Waiting for pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 to disappear + Apr 5 19:12:28.608: INFO: Pod downwardapi-volume-e6170b37-f9e7-4ee9-a2d8-173a73dcae58 no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:12:28.609: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-9314" for this suite. 04/05/23 19:12:28.614 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-node] NoExecuteTaintManager Single Pod [Serial] + removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/node/taints.go:293 +[BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:12:28.625 +Apr 5 19:12:28.625: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename taint-single-pod 04/05/23 19:12:28.626 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:28.641 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:28.644 +[BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/node/taints.go:170 +Apr 5 19:12:28.647: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 19:13:28.699: INFO: Waiting for terminating namespaces to be deleted... +[It] removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/node/taints.go:293 +Apr 5 19:13:28.703: INFO: Starting informer... +STEP: Starting pod... 04/05/23 19:13:28.703 +Apr 5 19:13:28.921: INFO: Pod is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node +STEP: Trying to apply a taint on the Node 04/05/23 19:13:28.921 +STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 19:13:28.941 +STEP: Waiting short time to make sure Pod is queued for deletion 04/05/23 19:13:28.955 +Apr 5 19:13:28.955: INFO: Pod wasn't evicted. Proceeding +Apr 5 19:13:28.955: INFO: Removing taint from Node +STEP: verifying the node doesn't have the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 19:13:29.038 +STEP: Waiting some time to make sure that toleration time passed. 04/05/23 19:13:29.084 +Apr 5 19:14:44.087: INFO: Pod wasn't evicted. Test successful +[AfterEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:14:44.087: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "taint-single-pod-8311" for this suite. 04/05/23 19:14:44.096 +------------------------------ +• [SLOW TEST] [135.478 seconds] +[sig-node] NoExecuteTaintManager Single Pod [Serial] +test/e2e/node/framework.go:23 + removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/node/taints.go:293 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:12:28.625 + Apr 5 19:12:28.625: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename taint-single-pod 04/05/23 19:12:28.626 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:12:28.641 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:12:28.644 + [BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/node/taints.go:170 + Apr 5 19:12:28.647: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 19:13:28.699: INFO: Waiting for terminating namespaces to be deleted... + [It] removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/node/taints.go:293 + Apr 5 19:13:28.703: INFO: Starting informer... + STEP: Starting pod... 04/05/23 19:13:28.703 + Apr 5 19:13:28.921: INFO: Pod is running on ttneyla26-md-0-8474989c68-rj4zb. Tainting Node + STEP: Trying to apply a taint on the Node 04/05/23 19:13:28.921 + STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 19:13:28.941 + STEP: Waiting short time to make sure Pod is queued for deletion 04/05/23 19:13:28.955 + Apr 5 19:13:28.955: INFO: Pod wasn't evicted. Proceeding + Apr 5 19:13:28.955: INFO: Removing taint from Node + STEP: verifying the node doesn't have the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute 04/05/23 19:13:29.038 + STEP: Waiting some time to make sure that toleration time passed. 04/05/23 19:13:29.084 + Apr 5 19:14:44.087: INFO: Pod wasn't evicted. Test successful + [AfterEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:14:44.087: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] NoExecuteTaintManager Single Pod [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "taint-single-pod-8311" for this suite. 04/05/23 19:14:44.096 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:243 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:14:44.111 +Apr 5 19:14:44.111: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 19:14:44.112 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:14:44.129 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:14:44.133 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:243 +STEP: Creating a test namespace 04/05/23 19:14:44.137 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:14:44.152 +STEP: Creating a pod in the namespace 04/05/23 19:14:44.154 +STEP: Waiting for the pod to have running status 04/05/23 19:14:44.161 +Apr 5 19:14:44.161: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "nsdeletetest-6658" to be "running" +Apr 5 19:14:44.165: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.082468ms +Apr 5 19:14:46.170: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008861128s +Apr 5 19:14:48.171: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009755825s +Apr 5 19:14:50.171: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.009320159s +Apr 5 19:14:50.171: INFO: Pod "test-pod" satisfied condition "running" +STEP: Deleting the namespace 04/05/23 19:14:50.171 +STEP: Waiting for the namespace to be removed. 04/05/23 19:14:50.178 +STEP: Recreating the namespace 04/05/23 19:15:02.184 +STEP: Verifying there are no pods in the namespace 04/05/23 19:15:02.205 +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:15:02.208: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-2826" for this suite. 04/05/23 19:15:02.214 +STEP: Destroying namespace "nsdeletetest-6658" for this suite. 04/05/23 19:15:02.222 +Apr 5 19:15:02.225: INFO: Namespace nsdeletetest-6658 was already deleted +STEP: Destroying namespace "nsdeletetest-1268" for this suite. 04/05/23 19:15:02.225 +------------------------------ +• [SLOW TEST] [18.124 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/apimachinery/namespace.go:243 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:14:44.111 + Apr 5 19:14:44.111: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 19:14:44.112 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:14:44.129 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:14:44.133 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:243 + STEP: Creating a test namespace 04/05/23 19:14:44.137 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:14:44.152 + STEP: Creating a pod in the namespace 04/05/23 19:14:44.154 + STEP: Waiting for the pod to have running status 04/05/23 19:14:44.161 + Apr 5 19:14:44.161: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "nsdeletetest-6658" to be "running" + Apr 5 19:14:44.165: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.082468ms + Apr 5 19:14:46.170: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008861128s + Apr 5 19:14:48.171: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009755825s + Apr 5 19:14:50.171: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.009320159s + Apr 5 19:14:50.171: INFO: Pod "test-pod" satisfied condition "running" + STEP: Deleting the namespace 04/05/23 19:14:50.171 + STEP: Waiting for the namespace to be removed. 04/05/23 19:14:50.178 + STEP: Recreating the namespace 04/05/23 19:15:02.184 + STEP: Verifying there are no pods in the namespace 04/05/23 19:15:02.205 + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:15:02.208: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-2826" for this suite. 04/05/23 19:15:02.214 + STEP: Destroying namespace "nsdeletetest-6658" for this suite. 04/05/23 19:15:02.222 + Apr 5 19:15:02.225: INFO: Namespace nsdeletetest-6658 was already deleted + STEP: Destroying namespace "nsdeletetest-1268" for this suite. 04/05/23 19:15:02.225 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:109 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:15:02.236 +Apr 5 19:15:02.236: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:15:02.237 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:02.25 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:02.253 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:109 +STEP: Creating configMap with name projected-configmap-test-volume-map-b0a8b982-f6ba-42d2-9ef4-3bc7e3353957 04/05/23 19:15:02.256 +STEP: Creating a pod to test consume configMaps 04/05/23 19:15:02.262 +Apr 5 19:15:02.271: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025" in namespace "projected-8722" to be "Succeeded or Failed" +Apr 5 19:15:02.274: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 3.307128ms +Apr 5 19:15:04.280: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009091562s +Apr 5 19:15:06.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008381593s +Apr 5 19:15:08.278: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007217779s +Apr 5 19:15:10.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007832503s +STEP: Saw pod success 04/05/23 19:15:10.279 +Apr 5 19:15:10.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025" satisfied condition "Succeeded or Failed" +Apr 5 19:15:10.282: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 container agnhost-container: +STEP: delete the pod 04/05/23 19:15:10.299 +Apr 5 19:15:10.316: INFO: Waiting for pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 to disappear +Apr 5 19:15:10.319: INFO: Pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:15:10.319: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-8722" for this suite. 04/05/23 19:15:10.326 +------------------------------ +• [SLOW TEST] [8.096 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/common/storage/projected_configmap.go:109 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:15:02.236 + Apr 5 19:15:02.236: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:15:02.237 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:02.25 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:02.253 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:109 + STEP: Creating configMap with name projected-configmap-test-volume-map-b0a8b982-f6ba-42d2-9ef4-3bc7e3353957 04/05/23 19:15:02.256 + STEP: Creating a pod to test consume configMaps 04/05/23 19:15:02.262 + Apr 5 19:15:02.271: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025" in namespace "projected-8722" to be "Succeeded or Failed" + Apr 5 19:15:02.274: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 3.307128ms + Apr 5 19:15:04.280: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009091562s + Apr 5 19:15:06.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008381593s + Apr 5 19:15:08.278: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007217779s + Apr 5 19:15:10.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007832503s + STEP: Saw pod success 04/05/23 19:15:10.279 + Apr 5 19:15:10.279: INFO: Pod "pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025" satisfied condition "Succeeded or Failed" + Apr 5 19:15:10.282: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 container agnhost-container: + STEP: delete the pod 04/05/23 19:15:10.299 + Apr 5 19:15:10.316: INFO: Waiting for pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 to disappear + Apr 5 19:15:10.319: INFO: Pod pod-projected-configmaps-5f8cb390-5637-4883-af7d-50dd801b1025 no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:15:10.319: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-8722" for this suite. 04/05/23 19:15:10.326 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should update/patch PodDisruptionBudget status [Conformance] + test/e2e/apps/disruption.go:164 +[BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:15:10.34 +Apr 5 19:15:10.340: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption 04/05/23 19:15:10.341 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:10.354 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:10.357 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 +[It] should update/patch PodDisruptionBudget status [Conformance] + test/e2e/apps/disruption.go:164 +STEP: Waiting for the pdb to be processed 04/05/23 19:15:10.366 +STEP: Updating PodDisruptionBudget status 04/05/23 19:15:10.373 +STEP: Waiting for all pods to be running 04/05/23 19:15:10.382 +Apr 5 19:15:10.391: INFO: running pods: 0 < 1 +Apr 5 19:15:12.424: INFO: running pods: 0 < 1 +STEP: locating a running pod 04/05/23 19:15:14.396 +STEP: Waiting for the pdb to be processed 04/05/23 19:15:14.409 +STEP: Patching PodDisruptionBudget status 04/05/23 19:15:14.418 +STEP: Waiting for the pdb to be processed 04/05/23 19:15:14.428 +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:15:14.431: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-1148" for this suite. 04/05/23 19:15:14.438 +------------------------------ +• [4.104 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should update/patch PodDisruptionBudget status [Conformance] + test/e2e/apps/disruption.go:164 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:15:10.34 + Apr 5 19:15:10.340: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption 04/05/23 19:15:10.341 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:10.354 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:10.357 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 + [It] should update/patch PodDisruptionBudget status [Conformance] + test/e2e/apps/disruption.go:164 + STEP: Waiting for the pdb to be processed 04/05/23 19:15:10.366 + STEP: Updating PodDisruptionBudget status 04/05/23 19:15:10.373 + STEP: Waiting for all pods to be running 04/05/23 19:15:10.382 + Apr 5 19:15:10.391: INFO: running pods: 0 < 1 + Apr 5 19:15:12.424: INFO: running pods: 0 < 1 + STEP: locating a running pod 04/05/23 19:15:14.396 + STEP: Waiting for the pdb to be processed 04/05/23 19:15:14.409 + STEP: Patching PodDisruptionBudget status 04/05/23 19:15:14.418 + STEP: Waiting for the pdb to be processed 04/05/23 19:15:14.428 + [AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:15:14.431: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-1148" for this suite. 04/05/23 19:15:14.438 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:162 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:15:14.446 +Apr 5 19:15:14.446: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:15:14.447 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:14.461 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:14.463 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:162 +STEP: Creating the pod 04/05/23 19:15:14.467 +Apr 5 19:15:14.475: INFO: Waiting up to 5m0s for pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" in namespace "projected-5936" to be "running and ready" +Apr 5 19:15:14.479: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.050358ms +Apr 5 19:15:14.479: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:15:16.484: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008889295s +Apr 5 19:15:16.484: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:15:18.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008361749s +Apr 5 19:15:18.483: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:15:20.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Running", Reason="", readiness=true. Elapsed: 6.008499903s +Apr 5 19:15:20.483: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Running (Ready = true) +Apr 5 19:15:20.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" satisfied condition "running and ready" +Apr 5 19:15:21.021: INFO: Successfully updated pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:15:23.036: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-5936" for this suite. 04/05/23 19:15:23.041 +------------------------------ +• [SLOW TEST] [8.603 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:162 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:15:14.446 + Apr 5 19:15:14.446: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:15:14.447 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:14.461 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:14.463 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:162 + STEP: Creating the pod 04/05/23 19:15:14.467 + Apr 5 19:15:14.475: INFO: Waiting up to 5m0s for pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" in namespace "projected-5936" to be "running and ready" + Apr 5 19:15:14.479: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.050358ms + Apr 5 19:15:14.479: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:15:16.484: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008889295s + Apr 5 19:15:16.484: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:15:18.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008361749s + Apr 5 19:15:18.483: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:15:20.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d": Phase="Running", Reason="", readiness=true. Elapsed: 6.008499903s + Apr 5 19:15:20.483: INFO: The phase of Pod annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d is Running (Ready = true) + Apr 5 19:15:20.483: INFO: Pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" satisfied condition "running and ready" + Apr 5 19:15:21.021: INFO: Successfully updated pod "annotationupdatedf2518fb-6153-4d7f-862b-ab170251f44d" + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:15:23.036: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-5936" for this suite. 04/05/23 19:15:23.041 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/apimachinery/resource_quota.go:690 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:15:23.049 +Apr 5 19:15:23.049: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:15:23.05 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:23.065 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:23.068 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/apimachinery/resource_quota.go:690 +STEP: Creating a ResourceQuota with terminating scope 04/05/23 19:15:23.072 +STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:15:23.077 +STEP: Creating a ResourceQuota with not terminating scope 04/05/23 19:15:25.085 +STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:15:25.09 +STEP: Creating a long running pod 04/05/23 19:15:27.097 +STEP: Ensuring resource quota with not terminating scope captures the pod usage 04/05/23 19:15:27.111 +STEP: Ensuring resource quota with terminating scope ignored the pod usage 04/05/23 19:15:29.116 +STEP: Deleting the pod 04/05/23 19:15:31.121 +STEP: Ensuring resource quota status released the pod usage 04/05/23 19:15:31.137 +STEP: Creating a terminating pod 04/05/23 19:15:33.142 +STEP: Ensuring resource quota with terminating scope captures the pod usage 04/05/23 19:15:33.156 +STEP: Ensuring resource quota with not terminating scope ignored the pod usage 04/05/23 19:15:35.161 +STEP: Deleting the pod 04/05/23 19:15:37.167 +STEP: Ensuring resource quota status released the pod usage 04/05/23 19:15:37.185 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:15:39.190: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-9363" for this suite. 04/05/23 19:15:39.195 +------------------------------ +• [SLOW TEST] [16.153 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/apimachinery/resource_quota.go:690 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:15:23.049 + Apr 5 19:15:23.049: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:15:23.05 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:23.065 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:23.068 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/apimachinery/resource_quota.go:690 + STEP: Creating a ResourceQuota with terminating scope 04/05/23 19:15:23.072 + STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:15:23.077 + STEP: Creating a ResourceQuota with not terminating scope 04/05/23 19:15:25.085 + STEP: Ensuring ResourceQuota status is calculated 04/05/23 19:15:25.09 + STEP: Creating a long running pod 04/05/23 19:15:27.097 + STEP: Ensuring resource quota with not terminating scope captures the pod usage 04/05/23 19:15:27.111 + STEP: Ensuring resource quota with terminating scope ignored the pod usage 04/05/23 19:15:29.116 + STEP: Deleting the pod 04/05/23 19:15:31.121 + STEP: Ensuring resource quota status released the pod usage 04/05/23 19:15:31.137 + STEP: Creating a terminating pod 04/05/23 19:15:33.142 + STEP: Ensuring resource quota with terminating scope captures the pod usage 04/05/23 19:15:33.156 + STEP: Ensuring resource quota with not terminating scope ignored the pod usage 04/05/23 19:15:35.161 + STEP: Deleting the pod 04/05/23 19:15:37.167 + STEP: Ensuring resource quota status released the pod usage 04/05/23 19:15:37.185 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:15:39.190: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-9363" for this suite. 04/05/23 19:15:39.195 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:108 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:15:39.209 +Apr 5 19:15:39.209: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 19:15:39.21 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:39.226 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:39.229 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:108 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 19:16:39.244: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-1618" for this suite. 04/05/23 19:16:39.249 +------------------------------ +• [SLOW TEST] [60.048 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/common/node/container_probe.go:108 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:15:39.209 + Apr 5 19:15:39.209: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 19:15:39.21 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:15:39.226 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:15:39.229 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:108 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 19:16:39.244: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-1618" for this suite. 04/05/23 19:16:39.249 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-node] Sysctls [LinuxOnly] [NodeConformance] + should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:123 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:16:39.263 +Apr 5 19:16:39.263: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sysctl 04/05/23 19:16:39.264 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:16:39.281 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:16:39.283 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 +[It] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:123 +STEP: Creating a pod with one valid and two invalid sysctls 04/05/23 19:16:39.287 +[AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:16:39.291: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "sysctl-2753" for this suite. 04/05/23 19:16:39.298 +------------------------------ +• [0.042 seconds] +[sig-node] Sysctls [LinuxOnly] [NodeConformance] +test/e2e/common/node/framework.go:23 + should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:123 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:16:39.263 + Apr 5 19:16:39.263: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sysctl 04/05/23 19:16:39.264 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:16:39.281 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:16:39.283 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 + [It] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:123 + STEP: Creating a pod with one valid and two invalid sysctls 04/05/23 19:16:39.287 + [AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:16:39.291: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "sysctl-2753" for this suite. 04/05/23 19:16:39.298 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-api-machinery] Aggregator + Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/apimachinery/aggregator.go:100 +[BeforeEach] [sig-api-machinery] Aggregator + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:16:39.308 +Apr 5 19:16:39.309: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename aggregator 04/05/23 19:16:39.31 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:16:39.324 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:16:39.327 +[BeforeEach] [sig-api-machinery] Aggregator + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:78 +Apr 5 19:16:39.330: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[It] Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/apimachinery/aggregator.go:100 +STEP: Registering the sample API server. 04/05/23 19:16:39.331 +Apr 5 19:16:39.908: INFO: deployment "sample-apiserver-deployment" doesn't have the required revision set +Apr 5 19:16:41.963: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:43.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:45.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:47.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:49.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:51.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:53.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:55.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:57.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:16:59.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:17:01.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:17:03.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:17:05.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:17:08.095: INFO: Waited 119.59298ms for the sample-apiserver to be ready to handle requests. +STEP: Read Status for v1alpha1.wardle.example.com 04/05/23 19:17:08.544 +STEP: kubectl patch apiservice v1alpha1.wardle.example.com -p '{"spec":{"versionPriority": 400}}' 04/05/23 19:17:08.584 +STEP: List APIServices 04/05/23 19:17:08.637 +Apr 5 19:17:08.688: INFO: Found v1alpha1.wardle.example.com in APIServiceList +[AfterEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:68 +[AfterEach] [sig-api-machinery] Aggregator + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:09.485: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Aggregator + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Aggregator + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Aggregator + tear down framework | framework.go:193 +STEP: Destroying namespace "aggregator-7735" for this suite. 04/05/23 19:17:09.536 +------------------------------ +• [SLOW TEST] [30.279 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/apimachinery/aggregator.go:100 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Aggregator + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:16:39.308 + Apr 5 19:16:39.309: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename aggregator 04/05/23 19:16:39.31 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:16:39.324 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:16:39.327 + [BeforeEach] [sig-api-machinery] Aggregator + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:78 + Apr 5 19:16:39.330: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [It] Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/apimachinery/aggregator.go:100 + STEP: Registering the sample API server. 04/05/23 19:16:39.331 + Apr 5 19:16:39.908: INFO: deployment "sample-apiserver-deployment" doesn't have the required revision set + Apr 5 19:16:41.963: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:43.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:45.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:47.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:49.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:51.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:53.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:55.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:57.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:16:59.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:17:01.967: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:17:03.969: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:17:05.968: 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(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 16, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-55bd96fd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:17:08.095: INFO: Waited 119.59298ms for the sample-apiserver to be ready to handle requests. + STEP: Read Status for v1alpha1.wardle.example.com 04/05/23 19:17:08.544 + STEP: kubectl patch apiservice v1alpha1.wardle.example.com -p '{"spec":{"versionPriority": 400}}' 04/05/23 19:17:08.584 + STEP: List APIServices 04/05/23 19:17:08.637 + Apr 5 19:17:08.688: INFO: Found v1alpha1.wardle.example.com in APIServiceList + [AfterEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:68 + [AfterEach] [sig-api-machinery] Aggregator + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:09.485: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Aggregator + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Aggregator + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Aggregator + tear down framework | framework.go:193 + STEP: Destroying namespace "aggregator-7735" for this suite. 04/05/23 19:17:09.536 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:167 +[BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:09.592 +Apr 5 19:17:09.592: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:17:09.593 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:09.627 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:09.629 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 +STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:17:09.651 +Apr 5 19:17:09.661: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-7932" to be "running and ready" +Apr 5 19:17:09.667: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 5.881559ms +Apr 5 19:17:09.667: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:11.672: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010919239s +Apr 5 19:17:11.672: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:13.674: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013091377s +Apr 5 19:17:13.674: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:15.673: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.01139893s +Apr 5 19:17:15.673: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) +Apr 5 19:17:15.673: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" +[It] should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:167 +STEP: create the pod with lifecycle hook 04/05/23 19:17:15.676 +Apr 5 19:17:15.684: INFO: Waiting up to 5m0s for pod "pod-with-poststart-http-hook" in namespace "container-lifecycle-hook-7932" to be "running and ready" +Apr 5 19:17:15.687: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.985876ms +Apr 5 19:17:15.687: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:17.692: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007628325s +Apr 5 19:17:17.692: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:19.692: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008173005s +Apr 5 19:17:19.693: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:21.693: INFO: Pod "pod-with-poststart-http-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.009022924s +Apr 5 19:17:21.694: INFO: The phase of Pod pod-with-poststart-http-hook is Running (Ready = true) +Apr 5 19:17:21.694: INFO: Pod "pod-with-poststart-http-hook" satisfied condition "running and ready" +STEP: check poststart hook 04/05/23 19:17:21.698 +STEP: delete the pod with lifecycle hook 04/05/23 19:17:21.721 +Apr 5 19:17:21.729: INFO: Waiting for pod pod-with-poststart-http-hook to disappear +Apr 5 19:17:21.734: INFO: Pod pod-with-poststart-http-hook still exists +Apr 5 19:17:23.735: INFO: Waiting for pod pod-with-poststart-http-hook to disappear +Apr 5 19:17:23.739: INFO: Pod pod-with-poststart-http-hook no longer exists +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:23.739: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 +STEP: Destroying namespace "container-lifecycle-hook-7932" for this suite. 04/05/23 19:17:23.745 +------------------------------ +• [SLOW TEST] [14.159 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/common/node/lifecycle_hook.go:167 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:09.592 + Apr 5 19:17:09.592: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:17:09.593 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:09.627 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:09.629 + [BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 + STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:17:09.651 + Apr 5 19:17:09.661: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-7932" to be "running and ready" + Apr 5 19:17:09.667: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 5.881559ms + Apr 5 19:17:09.667: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:11.672: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010919239s + Apr 5 19:17:11.672: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:13.674: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013091377s + Apr 5 19:17:13.674: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:15.673: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.01139893s + Apr 5 19:17:15.673: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) + Apr 5 19:17:15.673: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" + [It] should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:167 + STEP: create the pod with lifecycle hook 04/05/23 19:17:15.676 + Apr 5 19:17:15.684: INFO: Waiting up to 5m0s for pod "pod-with-poststart-http-hook" in namespace "container-lifecycle-hook-7932" to be "running and ready" + Apr 5 19:17:15.687: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.985876ms + Apr 5 19:17:15.687: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:17.692: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007628325s + Apr 5 19:17:17.692: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:19.692: INFO: Pod "pod-with-poststart-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008173005s + Apr 5 19:17:19.693: INFO: The phase of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:21.693: INFO: Pod "pod-with-poststart-http-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.009022924s + Apr 5 19:17:21.694: INFO: The phase of Pod pod-with-poststart-http-hook is Running (Ready = true) + Apr 5 19:17:21.694: INFO: Pod "pod-with-poststart-http-hook" satisfied condition "running and ready" + STEP: check poststart hook 04/05/23 19:17:21.698 + STEP: delete the pod with lifecycle hook 04/05/23 19:17:21.721 + Apr 5 19:17:21.729: INFO: Waiting for pod pod-with-poststart-http-hook to disappear + Apr 5 19:17:21.734: INFO: Pod pod-with-poststart-http-hook still exists + Apr 5 19:17:23.735: INFO: Waiting for pod pod-with-poststart-http-hook to disappear + Apr 5 19:17:23.739: INFO: Pod pod-with-poststart-http-hook no longer exists + [AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:23.739: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 + STEP: Destroying namespace "container-lifecycle-hook-7932" for this suite. 04/05/23 19:17:23.745 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/apimachinery/watch.go:191 +[BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:23.756 +Apr 5 19:17:23.756: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename watch 04/05/23 19:17:23.757 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:23.77 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:23.773 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/apimachinery/watch.go:191 +STEP: creating a watch on configmaps 04/05/23 19:17:23.776 +STEP: creating a new configmap 04/05/23 19:17:23.778 +STEP: modifying the configmap once 04/05/23 19:17:23.782 +STEP: closing the watch once it receives two notifications 04/05/23 19:17:23.792 +Apr 5 19:17:23.792: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102567 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17:23 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Apr 5 19:17:23.792: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102568 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17:23 +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 04/05/23 19:17:23.793 +STEP: creating a new watch on configmaps from the last resource version observed by the first watch 04/05/23 19:17:23.802 +STEP: deleting the configmap 04/05/23 19:17:23.804 +STEP: Expecting to observe notifications for all changes to the configmap since the first watch closed 04/05/23 19:17:23.809 +Apr 5 19:17:23.810: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102569 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17: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,} +Apr 5 19:17:23.810: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102570 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17: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/node/init/init.go:32 +Apr 5 19:17:23.810: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 +STEP: Destroying namespace "watch-4132" for this suite. 04/05/23 19:17:23.815 +------------------------------ +• [0.068 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/apimachinery/watch.go:191 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:23.756 + Apr 5 19:17:23.756: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename watch 04/05/23 19:17:23.757 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:23.77 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:23.773 + [BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/apimachinery/watch.go:191 + STEP: creating a watch on configmaps 04/05/23 19:17:23.776 + STEP: creating a new configmap 04/05/23 19:17:23.778 + STEP: modifying the configmap once 04/05/23 19:17:23.782 + STEP: closing the watch once it receives two notifications 04/05/23 19:17:23.792 + Apr 5 19:17:23.792: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102567 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17:23 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} + Apr 5 19:17:23.792: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102568 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17:23 +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 04/05/23 19:17:23.793 + STEP: creating a new watch on configmaps from the last resource version observed by the first watch 04/05/23 19:17:23.802 + STEP: deleting the configmap 04/05/23 19:17:23.804 + STEP: Expecting to observe notifications for all changes to the configmap since the first watch closed 04/05/23 19:17:23.809 + Apr 5 19:17:23.810: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102569 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17: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,} + Apr 5 19:17:23.810: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-4132 20c4dc41-a8e9-49df-bec4-013761ce3233 102570 0 2023-04-05 19:17:23 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2023-04-05 19:17: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/node/init/init.go:32 + Apr 5 19:17:23.810: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 + STEP: Destroying namespace "watch-4132" for this suite. 04/05/23 19:17:23.815 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:249 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:23.825 +Apr 5 19:17:23.825: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:17:23.826 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:23.84 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:23.843 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:249 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:17:23.846 +Apr 5 19:17:23.856: INFO: Waiting up to 5m0s for pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe" in namespace "projected-4419" to be "Succeeded or Failed" +Apr 5 19:17:23.859: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.84553ms +Apr 5 19:17:25.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008984596s +Apr 5 19:17:27.863: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007177151s +Apr 5 19:17:29.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009139202s +Apr 5 19:17:31.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009457594s +STEP: Saw pod success 04/05/23 19:17:31.866 +Apr 5 19:17:31.866: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe" satisfied condition "Succeeded or Failed" +Apr 5 19:17:31.868: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe container client-container: +STEP: delete the pod 04/05/23 19:17:31.883 +Apr 5 19:17:31.901: INFO: Waiting for pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe to disappear +Apr 5 19:17:31.904: INFO: Pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:31.904: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-4419" for this suite. 04/05/23 19:17:31.911 +------------------------------ +• [SLOW TEST] [8.092 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/common/storage/projected_downwardapi.go:249 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:23.825 + Apr 5 19:17:23.825: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:17:23.826 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:23.84 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:23.843 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:249 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:17:23.846 + Apr 5 19:17:23.856: INFO: Waiting up to 5m0s for pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe" in namespace "projected-4419" to be "Succeeded or Failed" + Apr 5 19:17:23.859: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.84553ms + Apr 5 19:17:25.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008984596s + Apr 5 19:17:27.863: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007177151s + Apr 5 19:17:29.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009139202s + Apr 5 19:17:31.865: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009457594s + STEP: Saw pod success 04/05/23 19:17:31.866 + Apr 5 19:17:31.866: INFO: Pod "downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe" satisfied condition "Succeeded or Failed" + Apr 5 19:17:31.868: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe container client-container: + STEP: delete the pod 04/05/23 19:17:31.883 + Apr 5 19:17:31.901: INFO: Waiting for pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe to disappear + Apr 5 19:17:31.904: INFO: Pod downwardapi-volume-f65ea2dd-a63b-4d9b-a299-9405bdbbd7fe no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:31.904: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-4419" for this suite. 04/05/23 19:17:31.911 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected combined + should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/common/storage/projected_combined.go:44 +[BeforeEach] [sig-storage] Projected combined + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:31.921 +Apr 5 19:17:31.921: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:17:31.922 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:31.938 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:31.941 +[BeforeEach] [sig-storage] Projected combined + test/e2e/framework/metrics/init/init.go:31 +[It] should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/common/storage/projected_combined.go:44 +STEP: Creating configMap with name configmap-projected-all-test-volume-1d04fb62-9397-43bf-a087-74c90d2e50e2 04/05/23 19:17:31.945 +STEP: Creating secret with name secret-projected-all-test-volume-65260a41-9d1f-4554-86b8-3d82607c6271 04/05/23 19:17:31.951 +STEP: Creating a pod to test Check all projections for projected volume plugin 04/05/23 19:17:31.957 +Apr 5 19:17:31.967: INFO: Waiting up to 5m0s for pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3" in namespace "projected-2973" to be "Succeeded or Failed" +Apr 5 19:17:31.974: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 7.086606ms +Apr 5 19:17:33.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012792272s +Apr 5 19:17:35.979: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012474449s +Apr 5 19:17:37.979: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.01235232s +Apr 5 19:17:39.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012847558s +STEP: Saw pod success 04/05/23 19:17:39.98 +Apr 5 19:17:39.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3" satisfied condition "Succeeded or Failed" +Apr 5 19:17:39.984: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 container projected-all-volume-test: +STEP: delete the pod 04/05/23 19:17:39.991 +Apr 5 19:17:40.006: INFO: Waiting for pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 to disappear +Apr 5 19:17:40.009: INFO: Pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 no longer exists +[AfterEach] [sig-storage] Projected combined + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:40.009: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected combined + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected combined + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected combined + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-2973" for this suite. 04/05/23 19:17:40.015 +------------------------------ +• [SLOW TEST] [8.102 seconds] +[sig-storage] Projected combined +test/e2e/common/storage/framework.go:23 + should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/common/storage/projected_combined.go:44 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected combined + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:31.921 + Apr 5 19:17:31.921: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:17:31.922 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:31.938 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:31.941 + [BeforeEach] [sig-storage] Projected combined + test/e2e/framework/metrics/init/init.go:31 + [It] should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/common/storage/projected_combined.go:44 + STEP: Creating configMap with name configmap-projected-all-test-volume-1d04fb62-9397-43bf-a087-74c90d2e50e2 04/05/23 19:17:31.945 + STEP: Creating secret with name secret-projected-all-test-volume-65260a41-9d1f-4554-86b8-3d82607c6271 04/05/23 19:17:31.951 + STEP: Creating a pod to test Check all projections for projected volume plugin 04/05/23 19:17:31.957 + Apr 5 19:17:31.967: INFO: Waiting up to 5m0s for pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3" in namespace "projected-2973" to be "Succeeded or Failed" + Apr 5 19:17:31.974: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 7.086606ms + Apr 5 19:17:33.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012792272s + Apr 5 19:17:35.979: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012474449s + Apr 5 19:17:37.979: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.01235232s + Apr 5 19:17:39.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012847558s + STEP: Saw pod success 04/05/23 19:17:39.98 + Apr 5 19:17:39.980: INFO: Pod "projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3" satisfied condition "Succeeded or Failed" + Apr 5 19:17:39.984: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 container projected-all-volume-test: + STEP: delete the pod 04/05/23 19:17:39.991 + Apr 5 19:17:40.006: INFO: Waiting for pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 to disappear + Apr 5 19:17:40.009: INFO: Pod projected-volume-4019d17e-fc4d-449f-9937-bfcdfede01b3 no longer exists + [AfterEach] [sig-storage] Projected combined + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:40.009: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected combined + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected combined + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected combined + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-2973" for this suite. 04/05/23 19:17:40.015 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir wrapper volumes + should not conflict [Conformance] + test/e2e/storage/empty_dir_wrapper.go:67 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:40.024 +Apr 5 19:17:40.024: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir-wrapper 04/05/23 19:17:40.026 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:40.04 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:40.043 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should not conflict [Conformance] + test/e2e/storage/empty_dir_wrapper.go:67 +Apr 5 19:17:40.065: INFO: Waiting up to 5m0s for pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332" in namespace "emptydir-wrapper-5412" to be "running and ready" +Apr 5 19:17:40.070: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 5.092599ms +Apr 5 19:17:40.070: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:42.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010042625s +Apr 5 19:17:42.075: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:44.076: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010656698s +Apr 5 19:17:44.076: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:17:46.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Running", Reason="", readiness=true. Elapsed: 6.010191496s +Apr 5 19:17:46.075: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Running (Ready = true) +Apr 5 19:17:46.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332" satisfied condition "running and ready" +STEP: Cleaning up the secret 04/05/23 19:17:46.078 +STEP: Cleaning up the configmap 04/05/23 19:17:46.085 +STEP: Cleaning up the pod 04/05/23 19:17:46.091 +[AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:46.102: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-wrapper-5412" for this suite. 04/05/23 19:17:46.111 +------------------------------ +• [SLOW TEST] [6.105 seconds] +[sig-storage] EmptyDir wrapper volumes +test/e2e/storage/utils/framework.go:23 + should not conflict [Conformance] + test/e2e/storage/empty_dir_wrapper.go:67 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir wrapper volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:40.024 + Apr 5 19:17:40.024: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir-wrapper 04/05/23 19:17:40.026 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:40.04 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:40.043 + [BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should not conflict [Conformance] + test/e2e/storage/empty_dir_wrapper.go:67 + Apr 5 19:17:40.065: INFO: Waiting up to 5m0s for pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332" in namespace "emptydir-wrapper-5412" to be "running and ready" + Apr 5 19:17:40.070: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 5.092599ms + Apr 5 19:17:40.070: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:42.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010042625s + Apr 5 19:17:42.075: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:44.076: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010656698s + Apr 5 19:17:44.076: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:17:46.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332": Phase="Running", Reason="", readiness=true. Elapsed: 6.010191496s + Apr 5 19:17:46.075: INFO: The phase of Pod pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332 is Running (Ready = true) + Apr 5 19:17:46.075: INFO: Pod "pod-secrets-6151aa0a-05fc-41bb-ba4d-e1d1ce9bb332" satisfied condition "running and ready" + STEP: Cleaning up the secret 04/05/23 19:17:46.078 + STEP: Cleaning up the configmap 04/05/23 19:17:46.085 + STEP: Cleaning up the pod 04/05/23 19:17:46.091 + [AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:46.102: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-wrapper-5412" for this suite. 04/05/23 19:17:46.111 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-cli] Kubectl client Kubectl expose + should create services for rc [Conformance] + test/e2e/kubectl/kubectl.go:1415 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:46.13 +Apr 5 19:17:46.131: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:17:46.132 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:46.15 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:46.153 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should create services for rc [Conformance] + test/e2e/kubectl/kubectl.go:1415 +STEP: creating Agnhost RC 04/05/23 19:17:46.157 +Apr 5 19:17:46.157: INFO: namespace kubectl-1495 +Apr 5 19:17:46.157: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 create -f -' +Apr 5 19:17:48.176: INFO: stderr: "" +Apr 5 19:17:48.176: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. 04/05/23 19:17:48.177 +Apr 5 19:17:49.182: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:49.182: INFO: Found 0 / 1 +Apr 5 19:17:50.183: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:50.183: INFO: Found 0 / 1 +Apr 5 19:17:51.181: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:51.181: INFO: Found 0 / 1 +Apr 5 19:17:52.181: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:52.181: INFO: Found 0 / 1 +Apr 5 19:17:53.182: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:53.182: INFO: Found 1 / 1 +Apr 5 19:17:53.182: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +Apr 5 19:17:53.186: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:17:53.186: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Apr 5 19:17:53.186: INFO: wait on agnhost-primary startup in kubectl-1495 +Apr 5 19:17:53.187: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 logs agnhost-primary-h7m2b agnhost-primary' +Apr 5 19:17:53.292: INFO: stderr: "" +Apr 5 19:17:53.292: INFO: stdout: "Paused\n" +STEP: exposing RC 04/05/23 19:17:53.293 +Apr 5 19:17:53.293: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 expose rc agnhost-primary --name=rm2 --port=1234 --target-port=6379' +Apr 5 19:17:53.404: INFO: stderr: "" +Apr 5 19:17:53.404: INFO: stdout: "service/rm2 exposed\n" +Apr 5 19:17:53.408: INFO: Service rm2 in namespace kubectl-1495 found. +STEP: exposing service 04/05/23 19:17:55.416 +Apr 5 19:17:55.417: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 expose service rm2 --name=rm3 --port=2345 --target-port=6379' +Apr 5 19:17:55.531: INFO: stderr: "" +Apr 5 19:17:55.532: INFO: stdout: "service/rm3 exposed\n" +Apr 5 19:17:55.536: INFO: Service rm3 in namespace kubectl-1495 found. +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:57.545: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-1495" for this suite. 04/05/23 19:17:57.551 +------------------------------ +• [SLOW TEST] [11.427 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl expose + test/e2e/kubectl/kubectl.go:1409 + should create services for rc [Conformance] + test/e2e/kubectl/kubectl.go:1415 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:46.13 + Apr 5 19:17:46.131: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:17:46.132 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:46.15 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:46.153 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should create services for rc [Conformance] + test/e2e/kubectl/kubectl.go:1415 + STEP: creating Agnhost RC 04/05/23 19:17:46.157 + Apr 5 19:17:46.157: INFO: namespace kubectl-1495 + Apr 5 19:17:46.157: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 create -f -' + Apr 5 19:17:48.176: INFO: stderr: "" + Apr 5 19:17:48.176: INFO: stdout: "replicationcontroller/agnhost-primary created\n" + STEP: Waiting for Agnhost primary to start. 04/05/23 19:17:48.177 + Apr 5 19:17:49.182: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:49.182: INFO: Found 0 / 1 + Apr 5 19:17:50.183: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:50.183: INFO: Found 0 / 1 + Apr 5 19:17:51.181: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:51.181: INFO: Found 0 / 1 + Apr 5 19:17:52.181: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:52.181: INFO: Found 0 / 1 + Apr 5 19:17:53.182: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:53.182: INFO: Found 1 / 1 + Apr 5 19:17:53.182: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 + Apr 5 19:17:53.186: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:17:53.186: INFO: ForEach: Found 1 pods from the filter. Now looping through them. + Apr 5 19:17:53.186: INFO: wait on agnhost-primary startup in kubectl-1495 + Apr 5 19:17:53.187: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 logs agnhost-primary-h7m2b agnhost-primary' + Apr 5 19:17:53.292: INFO: stderr: "" + Apr 5 19:17:53.292: INFO: stdout: "Paused\n" + STEP: exposing RC 04/05/23 19:17:53.293 + Apr 5 19:17:53.293: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 expose rc agnhost-primary --name=rm2 --port=1234 --target-port=6379' + Apr 5 19:17:53.404: INFO: stderr: "" + Apr 5 19:17:53.404: INFO: stdout: "service/rm2 exposed\n" + Apr 5 19:17:53.408: INFO: Service rm2 in namespace kubectl-1495 found. + STEP: exposing service 04/05/23 19:17:55.416 + Apr 5 19:17:55.417: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-1495 expose service rm2 --name=rm3 --port=2345 --target-port=6379' + Apr 5 19:17:55.531: INFO: stderr: "" + Apr 5 19:17:55.532: INFO: stdout: "service/rm3 exposed\n" + Apr 5 19:17:55.536: INFO: Service rm3 in namespace kubectl-1495 found. + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:57.545: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-1495" for this suite. 04/05/23 19:17:57.551 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + creating/deleting custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:58 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:57.559 +Apr 5 19:17:57.559: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 19:17:57.56 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:57.576 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:57.579 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] creating/deleting custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:58 +Apr 5 19:17:57.581: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:17:58.615: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "custom-resource-definition-5764" for this suite. 04/05/23 19:17:58.621 +------------------------------ +• [1.091 seconds] +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + Simple CustomResourceDefinition + test/e2e/apimachinery/custom_resource_definition.go:50 + creating/deleting custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:58 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:57.559 + Apr 5 19:17:57.559: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 19:17:57.56 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:57.576 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:57.579 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] creating/deleting custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:58 + Apr 5 19:17:57.581: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:17:58.615: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "custom-resource-definition-5764" for this suite. 04/05/23 19:17:58.621 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:89 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:17:58.655 +Apr 5 19:17:58.655: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:17:58.656 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:58.688 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:58.69 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:89 +STEP: Creating secret with name secret-test-map-af162da3-e1ee-4c32-8445-161c63aff3e8 04/05/23 19:17:58.693 +STEP: Creating a pod to test consume secrets 04/05/23 19:17:58.698 +Apr 5 19:17:58.706: INFO: Waiting up to 5m0s for pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30" in namespace "secrets-7221" to be "Succeeded or Failed" +Apr 5 19:17:58.710: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 3.87637ms +Apr 5 19:18:00.719: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012447748s +Apr 5 19:18:02.713: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006939037s +Apr 5 19:18:04.715: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009038833s +Apr 5 19:18:06.715: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008958847s +STEP: Saw pod success 04/05/23 19:18:06.715 +Apr 5 19:18:06.716: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30" satisfied condition "Succeeded or Failed" +Apr 5 19:18:06.719: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 container secret-volume-test: +STEP: delete the pod 04/05/23 19:18:06.726 +Apr 5 19:18:06.739: INFO: Waiting for pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 to disappear +Apr 5 19:18:06.743: INFO: Pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:06.743: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-7221" for this suite. 04/05/23 19:18:06.749 +------------------------------ +• [SLOW TEST] [8.102 seconds] +[sig-storage] Secrets +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/common/storage/secrets_volume.go:89 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:17:58.655 + Apr 5 19:17:58.655: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:17:58.656 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:17:58.688 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:17:58.69 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:89 + STEP: Creating secret with name secret-test-map-af162da3-e1ee-4c32-8445-161c63aff3e8 04/05/23 19:17:58.693 + STEP: Creating a pod to test consume secrets 04/05/23 19:17:58.698 + Apr 5 19:17:58.706: INFO: Waiting up to 5m0s for pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30" in namespace "secrets-7221" to be "Succeeded or Failed" + Apr 5 19:17:58.710: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 3.87637ms + Apr 5 19:18:00.719: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012447748s + Apr 5 19:18:02.713: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006939037s + Apr 5 19:18:04.715: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009038833s + Apr 5 19:18:06.715: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008958847s + STEP: Saw pod success 04/05/23 19:18:06.715 + Apr 5 19:18:06.716: INFO: Pod "pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30" satisfied condition "Succeeded or Failed" + Apr 5 19:18:06.719: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 container secret-volume-test: + STEP: delete the pod 04/05/23 19:18:06.726 + Apr 5 19:18:06.739: INFO: Waiting for pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 to disappear + Apr 5 19:18:06.743: INFO: Pod pod-secrets-55460c8b-40c7-44f5-8098-84637a625a30 no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:06.743: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-7221" for this suite. 04/05/23 19:18:06.749 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate pod and apply defaults after mutation [Conformance] + test/e2e/apimachinery/webhook.go:264 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:06.762 +Apr 5 19:18:06.762: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:18:06.763 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:06.78 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:06.782 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:18:06.798 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:18:07.105 +STEP: Deploying the webhook pod 04/05/23 19:18:07.115 +STEP: Wait for the deployment to be ready 04/05/23 19:18:07.13 +Apr 5 19:18:07.137: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +Apr 5 19:18:09.149: 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(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:18:11.153: 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(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:18:13.153 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:18:13.172 +Apr 5 19:18:14.172: 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/apimachinery/webhook.go:264 +STEP: Registering the mutating pod webhook via the AdmissionRegistration API 04/05/23 19:18:14.176 +STEP: create a pod that should be updated by the webhook 04/05/23 19:18:14.192 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:14.217: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-2398" for this suite. 04/05/23 19:18:14.282 +STEP: Destroying namespace "webhook-2398-markers" for this suite. 04/05/23 19:18:14.292 +------------------------------ +• [SLOW TEST] [7.540 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate pod and apply defaults after mutation [Conformance] + test/e2e/apimachinery/webhook.go:264 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:06.762 + Apr 5 19:18:06.762: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:18:06.763 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:06.78 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:06.782 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:18:06.798 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:18:07.105 + STEP: Deploying the webhook pod 04/05/23 19:18:07.115 + STEP: Wait for the deployment to be ready 04/05/23 19:18:07.13 + Apr 5 19:18:07.137: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created + Apr 5 19:18:09.149: 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(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:18:11.153: 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(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 18, 7, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:18:13.153 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:18:13.172 + Apr 5 19:18:14.172: 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/apimachinery/webhook.go:264 + STEP: Registering the mutating pod webhook via the AdmissionRegistration API 04/05/23 19:18:14.176 + STEP: create a pod that should be updated by the webhook 04/05/23 19:18:14.192 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:14.217: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-2398" for this suite. 04/05/23 19:18:14.282 + STEP: Destroying namespace "webhook-2398-markers" for this suite. 04/05/23 19:18:14.292 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command that always fails in a pod + should be possible to delete [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:135 +[BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:14.303 +Apr 5 19:18:14.303: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:18:14.304 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:14.321 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:14.324 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 +[BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:85 +[It] should be possible to delete [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:135 +[AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:14.359: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 +STEP: Destroying namespace "kubelet-test-1976" for this suite. 04/05/23 19:18:14.365 +------------------------------ +• [0.068 seconds] +[sig-node] Kubelet +test/e2e/common/node/framework.go:23 + when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:82 + should be possible to delete [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:135 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:14.303 + Apr 5 19:18:14.303: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:18:14.304 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:14.321 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:14.324 + [BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 + [BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:85 + [It] should be possible to delete [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:135 + [AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:14.359: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 + STEP: Destroying namespace "kubelet-test-1976" for this suite. 04/05/23 19:18:14.365 + << End Captured GinkgoWriter Output +------------------------------ +[sig-storage] ConfigMap + binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:175 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:14.376 +Apr 5 19:18:14.376: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:18:14.378 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:14.394 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:14.397 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:175 +STEP: Creating configMap with name configmap-test-upd-179ac62b-c67c-43a8-bf7e-00ccebbe3244 04/05/23 19:18:14.405 +STEP: Creating the pod 04/05/23 19:18:14.41 +Apr 5 19:18:14.418: INFO: Waiting up to 5m0s for pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2" in namespace "configmap-8088" to be "running" +Apr 5 19:18:14.422: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.208959ms +Apr 5 19:18:16.427: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008408982s +Apr 5 19:18:18.427: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008483906s +Apr 5 19:18:20.428: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Running", Reason="", readiness=false. Elapsed: 6.009216155s +Apr 5 19:18:20.428: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2" satisfied condition "running" +STEP: Waiting for pod with text data 04/05/23 19:18:20.428 +STEP: Waiting for pod with binary data 04/05/23 19:18:20.442 +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:20.448: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-8088" for this suite. 04/05/23 19:18:20.454 +------------------------------ +• [SLOW TEST] [6.085 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:175 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:14.376 + Apr 5 19:18:14.376: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:18:14.378 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:14.394 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:14.397 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:175 + STEP: Creating configMap with name configmap-test-upd-179ac62b-c67c-43a8-bf7e-00ccebbe3244 04/05/23 19:18:14.405 + STEP: Creating the pod 04/05/23 19:18:14.41 + Apr 5 19:18:14.418: INFO: Waiting up to 5m0s for pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2" in namespace "configmap-8088" to be "running" + Apr 5 19:18:14.422: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.208959ms + Apr 5 19:18:16.427: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008408982s + Apr 5 19:18:18.427: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008483906s + Apr 5 19:18:20.428: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2": Phase="Running", Reason="", readiness=false. Elapsed: 6.009216155s + Apr 5 19:18:20.428: INFO: Pod "pod-configmaps-a64f27d7-f596-4b2e-aefb-89c4f87717b2" satisfied condition "running" + STEP: Waiting for pod with text data 04/05/23 19:18:20.428 + STEP: Waiting for pod with binary data 04/05/23 19:18:20.442 + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:20.448: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-8088" for this suite. 04/05/23 19:18:20.454 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl label + should update the label on a resource [Conformance] + test/e2e/kubectl/kubectl.go:1509 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:20.466 +Apr 5 19:18:20.466: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:18:20.467 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:20.485 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:20.489 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Kubectl label + test/e2e/kubectl/kubectl.go:1494 +STEP: creating the pod 04/05/23 19:18:20.494 +Apr 5 19:18:20.495: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 create -f -' +Apr 5 19:18:20.912: INFO: stderr: "" +Apr 5 19:18:20.912: INFO: stdout: "pod/pause created\n" +Apr 5 19:18:20.912: INFO: Waiting up to 5m0s for 1 pods to be running and ready: [pause] +Apr 5 19:18:20.912: INFO: Waiting up to 5m0s for pod "pause" in namespace "kubectl-811" to be "running and ready" +Apr 5 19:18:20.922: INFO: Pod "pause": Phase="Pending", Reason="", readiness=false. Elapsed: 9.318687ms +Apr 5 19:18:20.922: INFO: Error evaluating pod condition running and ready: want pod 'pause' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' +Apr 5 19:18:22.927: INFO: Pod "pause": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015164211s +Apr 5 19:18:22.927: INFO: Error evaluating pod condition running and ready: want pod 'pause' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' +Apr 5 19:18:24.927: INFO: Pod "pause": Phase="Running", Reason="", readiness=true. Elapsed: 4.015158336s +Apr 5 19:18:24.927: INFO: Pod "pause" satisfied condition "running and ready" +Apr 5 19:18:24.927: 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/kubectl/kubectl.go:1509 +STEP: adding the label testing-label with value testing-label-value to a pod 04/05/23 19:18:24.928 +Apr 5 19:18:24.928: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 label pods pause testing-label=testing-label-value' +Apr 5 19:18:25.030: INFO: stderr: "" +Apr 5 19:18:25.030: INFO: stdout: "pod/pause labeled\n" +STEP: verifying the pod has the label testing-label with the value testing-label-value 04/05/23 19:18:25.03 +Apr 5 19:18:25.030: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pod pause -L testing-label' +Apr 5 19:18:25.128: INFO: stderr: "" +Apr 5 19:18:25.128: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 5s testing-label-value\n" +STEP: removing the label testing-label of a pod 04/05/23 19:18:25.128 +Apr 5 19:18:25.129: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 label pods pause testing-label-' +Apr 5 19:18:25.232: INFO: stderr: "" +Apr 5 19:18:25.232: INFO: stdout: "pod/pause unlabeled\n" +STEP: verifying the pod doesn't have the label testing-label 04/05/23 19:18:25.232 +Apr 5 19:18:25.233: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pod pause -L testing-label' +Apr 5 19:18:25.329: INFO: stderr: "" +Apr 5 19:18:25.329: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 5s \n" +[AfterEach] Kubectl label + test/e2e/kubectl/kubectl.go:1500 +STEP: using delete to clean up resources 04/05/23 19:18:25.329 +Apr 5 19:18:25.330: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 delete --grace-period=0 --force -f -' +Apr 5 19:18:25.425: 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" +Apr 5 19:18:25.425: INFO: stdout: "pod \"pause\" force deleted\n" +Apr 5 19:18:25.426: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get rc,svc -l name=pause --no-headers' +Apr 5 19:18:25.534: INFO: stderr: "No resources found in kubectl-811 namespace.\n" +Apr 5 19:18:25.534: INFO: stdout: "" +Apr 5 19:18:25.534: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pods -l name=pause -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Apr 5 19:18:25.634: INFO: stderr: "" +Apr 5 19:18:25.634: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:25.634: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-811" for this suite. 04/05/23 19:18:25.64 +------------------------------ +• [SLOW TEST] [5.182 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl label + test/e2e/kubectl/kubectl.go:1492 + should update the label on a resource [Conformance] + test/e2e/kubectl/kubectl.go:1509 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:20.466 + Apr 5 19:18:20.466: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:18:20.467 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:20.485 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:20.489 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Kubectl label + test/e2e/kubectl/kubectl.go:1494 + STEP: creating the pod 04/05/23 19:18:20.494 + Apr 5 19:18:20.495: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 create -f -' + Apr 5 19:18:20.912: INFO: stderr: "" + Apr 5 19:18:20.912: INFO: stdout: "pod/pause created\n" + Apr 5 19:18:20.912: INFO: Waiting up to 5m0s for 1 pods to be running and ready: [pause] + Apr 5 19:18:20.912: INFO: Waiting up to 5m0s for pod "pause" in namespace "kubectl-811" to be "running and ready" + Apr 5 19:18:20.922: INFO: Pod "pause": Phase="Pending", Reason="", readiness=false. Elapsed: 9.318687ms + Apr 5 19:18:20.922: INFO: Error evaluating pod condition running and ready: want pod 'pause' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' + Apr 5 19:18:22.927: INFO: Pod "pause": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015164211s + Apr 5 19:18:22.927: INFO: Error evaluating pod condition running and ready: want pod 'pause' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' + Apr 5 19:18:24.927: INFO: Pod "pause": Phase="Running", Reason="", readiness=true. Elapsed: 4.015158336s + Apr 5 19:18:24.927: INFO: Pod "pause" satisfied condition "running and ready" + Apr 5 19:18:24.927: 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/kubectl/kubectl.go:1509 + STEP: adding the label testing-label with value testing-label-value to a pod 04/05/23 19:18:24.928 + Apr 5 19:18:24.928: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 label pods pause testing-label=testing-label-value' + Apr 5 19:18:25.030: INFO: stderr: "" + Apr 5 19:18:25.030: INFO: stdout: "pod/pause labeled\n" + STEP: verifying the pod has the label testing-label with the value testing-label-value 04/05/23 19:18:25.03 + Apr 5 19:18:25.030: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pod pause -L testing-label' + Apr 5 19:18:25.128: INFO: stderr: "" + Apr 5 19:18:25.128: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 5s testing-label-value\n" + STEP: removing the label testing-label of a pod 04/05/23 19:18:25.128 + Apr 5 19:18:25.129: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 label pods pause testing-label-' + Apr 5 19:18:25.232: INFO: stderr: "" + Apr 5 19:18:25.232: INFO: stdout: "pod/pause unlabeled\n" + STEP: verifying the pod doesn't have the label testing-label 04/05/23 19:18:25.232 + Apr 5 19:18:25.233: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pod pause -L testing-label' + Apr 5 19:18:25.329: INFO: stderr: "" + Apr 5 19:18:25.329: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 5s \n" + [AfterEach] Kubectl label + test/e2e/kubectl/kubectl.go:1500 + STEP: using delete to clean up resources 04/05/23 19:18:25.329 + Apr 5 19:18:25.330: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 delete --grace-period=0 --force -f -' + Apr 5 19:18:25.425: 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" + Apr 5 19:18:25.425: INFO: stdout: "pod \"pause\" force deleted\n" + Apr 5 19:18:25.426: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get rc,svc -l name=pause --no-headers' + Apr 5 19:18:25.534: INFO: stderr: "No resources found in kubectl-811 namespace.\n" + Apr 5 19:18:25.534: INFO: stdout: "" + Apr 5 19:18:25.534: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-811 get pods -l name=pause -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' + Apr 5 19:18:25.634: INFO: stderr: "" + Apr 5 19:18:25.634: INFO: stdout: "" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:25.634: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-811" for this suite. 04/05/23 19:18:25.64 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + Replace and Patch tests [Conformance] + test/e2e/apps/replica_set.go:154 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:25.648 +Apr 5 19:18:25.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 19:18:25.65 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:25.668 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:25.671 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] Replace and Patch tests [Conformance] + test/e2e/apps/replica_set.go:154 +Apr 5 19:18:25.685: INFO: Pod name sample-pod: Found 0 pods out of 1 +Apr 5 19:18:30.690: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 19:18:30.69 +STEP: Scaling up "test-rs" replicaset 04/05/23 19:18:30.69 +Apr 5 19:18:30.700: INFO: Updating replica set "test-rs" +STEP: patching the ReplicaSet 04/05/23 19:18:30.7 +W0405 19:18:30.708936 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" +Apr 5 19:18:30.710: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 +Apr 5 19:18:30.729: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 +Apr 5 19:18:30.745: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 +Apr 5 19:18:30.762: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 +Apr 5 19:18:35.417: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 2, AvailableReplicas 2 +Apr 5 19:18:35.527: INFO: observed Replicaset test-rs in namespace replicaset-880 with ReadyReplicas 3 found true +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:18:35.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-880" for this suite. 04/05/23 19:18:35.533 +------------------------------ +• [SLOW TEST] [9.892 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + Replace and Patch tests [Conformance] + test/e2e/apps/replica_set.go:154 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:25.648 + Apr 5 19:18:25.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 19:18:25.65 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:25.668 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:25.671 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] Replace and Patch tests [Conformance] + test/e2e/apps/replica_set.go:154 + Apr 5 19:18:25.685: INFO: Pod name sample-pod: Found 0 pods out of 1 + Apr 5 19:18:30.690: INFO: Pod name sample-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 19:18:30.69 + STEP: Scaling up "test-rs" replicaset 04/05/23 19:18:30.69 + Apr 5 19:18:30.700: INFO: Updating replica set "test-rs" + STEP: patching the ReplicaSet 04/05/23 19:18:30.7 + W0405 19:18:30.708936 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" + Apr 5 19:18:30.710: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 + Apr 5 19:18:30.729: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 + Apr 5 19:18:30.745: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 + Apr 5 19:18:30.762: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 1, AvailableReplicas 1 + Apr 5 19:18:35.417: INFO: observed ReplicaSet test-rs in namespace replicaset-880 with ReadyReplicas 2, AvailableReplicas 2 + Apr 5 19:18:35.527: INFO: observed Replicaset test-rs in namespace replicaset-880 with ReadyReplicas 3 found true + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:18:35.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-880" for this suite. 04/05/23 19:18:35.533 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] PreemptionExecutionPath + runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/scheduling/preemption.go:624 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:18:35.547 +Apr 5 19:18:35.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption 04/05/23 19:18:35.548 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:35.561 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:35.564 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 +Apr 5 19:18:35.581: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 19:19:35.639: INFO: Waiting for terminating namespaces to be deleted... +[BeforeEach] PreemptionExecutionPath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:19:35.644 +Apr 5 19:19:35.644: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption-path 04/05/23 19:19:35.645 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:19:35.659 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:19:35.663 +[BeforeEach] PreemptionExecutionPath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:576 +STEP: Finding an available node 04/05/23 19:19:35.667 +STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:19:35.667 +Apr 5 19:19:35.675: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-preemption-path-1288" to be "running" +Apr 5 19:19:35.678: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.969931ms +Apr 5 19:19:37.684: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008563429s +Apr 5 19:19:39.682: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007282676s +Apr 5 19:19:41.685: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.009673091s +Apr 5 19:19:41.685: INFO: Pod "without-label" satisfied condition "running" +STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:19:41.688 +Apr 5 19:19:41.697: INFO: found a healthy node: ttneyla26-md-0-8474989c68-rj4zb +[It] runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/scheduling/preemption.go:624 +Apr 5 19:19:59.789: INFO: pods created so far: [1 1 1] +Apr 5 19:19:59.789: INFO: length of pods created so far: 3 +Apr 5 19:20:03.800: INFO: pods created so far: [2 2 1] +[AfterEach] PreemptionExecutionPath + test/e2e/framework/node/init/init.go:32 +Apr 5 19:20:10.802: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:549 +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:20:10.842: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 +[DeferCleanup (Each)] PreemptionExecutionPath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] PreemptionExecutionPath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] PreemptionExecutionPath + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-path-1288" for this suite. 04/05/23 19:20:10.906 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-7324" for this suite. 04/05/23 19:20:10.913 +------------------------------ +• [SLOW TEST] [95.373 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + PreemptionExecutionPath + test/e2e/scheduling/preemption.go:537 + runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/scheduling/preemption.go:624 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:18:35.547 + Apr 5 19:18:35.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption 04/05/23 19:18:35.548 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:18:35.561 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:18:35.564 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 + Apr 5 19:18:35.581: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 19:19:35.639: INFO: Waiting for terminating namespaces to be deleted... + [BeforeEach] PreemptionExecutionPath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:19:35.644 + Apr 5 19:19:35.644: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption-path 04/05/23 19:19:35.645 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:19:35.659 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:19:35.663 + [BeforeEach] PreemptionExecutionPath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:576 + STEP: Finding an available node 04/05/23 19:19:35.667 + STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:19:35.667 + Apr 5 19:19:35.675: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-preemption-path-1288" to be "running" + Apr 5 19:19:35.678: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.969931ms + Apr 5 19:19:37.684: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008563429s + Apr 5 19:19:39.682: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007282676s + Apr 5 19:19:41.685: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.009673091s + Apr 5 19:19:41.685: INFO: Pod "without-label" satisfied condition "running" + STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:19:41.688 + Apr 5 19:19:41.697: INFO: found a healthy node: ttneyla26-md-0-8474989c68-rj4zb + [It] runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/scheduling/preemption.go:624 + Apr 5 19:19:59.789: INFO: pods created so far: [1 1 1] + Apr 5 19:19:59.789: INFO: length of pods created so far: 3 + Apr 5 19:20:03.800: INFO: pods created so far: [2 2 1] + [AfterEach] PreemptionExecutionPath + test/e2e/framework/node/init/init.go:32 + Apr 5 19:20:10.802: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:549 + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:20:10.842: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 + [DeferCleanup (Each)] PreemptionExecutionPath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] PreemptionExecutionPath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] PreemptionExecutionPath + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-path-1288" for this suite. 04/05/23 19:20:10.906 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-7324" for this suite. 04/05/23 19:20:10.913 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + listing mutating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:656 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:20:10.922 +Apr 5 19:20:10.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:20:10.923 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:10.938 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:10.941 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:20:10.955 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:20:11.349 +STEP: Deploying the webhook pod 04/05/23 19:20:11.358 +STEP: Wait for the deployment to be ready 04/05/23 19:20:11.372 +Apr 5 19:20:11.379: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:20:13.391: 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(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:20:15.396: 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(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:20:17.395 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:20:17.425 +Apr 5 19:20:18.426: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] listing mutating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:656 +STEP: Listing all of the created validation webhooks 04/05/23 19:20:18.498 +STEP: Creating a configMap that should be mutated 04/05/23 19:20:18.516 +STEP: Deleting the collection of validation webhooks 04/05/23 19:20:18.545 +STEP: Creating a configMap that should not be mutated 04/05/23 19:20:18.596 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:20:18.606: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-8674" for this suite. 04/05/23 19:20:18.662 +STEP: Destroying namespace "webhook-8674-markers" for this suite. 04/05/23 19:20:18.672 +------------------------------ +• [SLOW TEST] [7.756 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + listing mutating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:656 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:20:10.922 + Apr 5 19:20:10.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:20:10.923 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:10.938 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:10.941 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:20:10.955 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:20:11.349 + STEP: Deploying the webhook pod 04/05/23 19:20:11.358 + STEP: Wait for the deployment to be ready 04/05/23 19:20:11.372 + Apr 5 19:20:11.379: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:20:13.391: 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(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:20:15.396: 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(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 11, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:20:17.395 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:20:17.425 + Apr 5 19:20:18.426: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] listing mutating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:656 + STEP: Listing all of the created validation webhooks 04/05/23 19:20:18.498 + STEP: Creating a configMap that should be mutated 04/05/23 19:20:18.516 + STEP: Deleting the collection of validation webhooks 04/05/23 19:20:18.545 + STEP: Creating a configMap that should not be mutated 04/05/23 19:20:18.596 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:20:18.606: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-8674" for this suite. 04/05/23 19:20:18.662 + STEP: Destroying namespace "webhook-8674-markers" for this suite. 04/05/23 19:20:18.672 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:649 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:20:18.688 +Apr 5 19:20:18.688: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:20:18.69 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:18.705 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:18.707 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:649 +STEP: creating a ServiceAccount 04/05/23 19:20:18.71 +STEP: watching for the ServiceAccount to be added 04/05/23 19:20:18.718 +STEP: patching the ServiceAccount 04/05/23 19:20:18.72 +STEP: finding ServiceAccount in list of all ServiceAccounts (by LabelSelector) 04/05/23 19:20:18.726 +STEP: deleting the ServiceAccount 04/05/23 19:20:18.73 +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:20:18.743: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-578" for this suite. 04/05/23 19:20:18.749 +------------------------------ +• [0.068 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:649 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:20:18.688 + Apr 5 19:20:18.688: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:20:18.69 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:18.705 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:18.707 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/auth/service_accounts.go:649 + STEP: creating a ServiceAccount 04/05/23 19:20:18.71 + STEP: watching for the ServiceAccount to be added 04/05/23 19:20:18.718 + STEP: patching the ServiceAccount 04/05/23 19:20:18.72 + STEP: finding ServiceAccount in list of all ServiceAccounts (by LabelSelector) 04/05/23 19:20:18.726 + STEP: deleting the ServiceAccount 04/05/23 19:20:18.73 + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:20:18.743: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-578" for this suite. 04/05/23 19:20:18.749 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test when starting a container that exits + should run with the expected status [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:52 +[BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:20:18.758 +Apr 5 19:20:18.758: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-runtime 04/05/23 19:20:18.759 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:18.775 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:18.777 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 +[It] should run with the expected status [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:52 +STEP: Container 'terminate-cmd-rpa': should get the expected 'RestartCount' 04/05/23 19:20:18.787 +STEP: Container 'terminate-cmd-rpa': should get the expected 'Phase' 04/05/23 19:20:40.89 +STEP: Container 'terminate-cmd-rpa': should get the expected 'Ready' condition 04/05/23 19:20:40.893 +STEP: Container 'terminate-cmd-rpa': should get the expected 'State' 04/05/23 19:20:40.9 +STEP: Container 'terminate-cmd-rpa': should be possible to delete [NodeConformance] 04/05/23 19:20:40.9 +STEP: Container 'terminate-cmd-rpof': should get the expected 'RestartCount' 04/05/23 19:20:40.924 +STEP: Container 'terminate-cmd-rpof': should get the expected 'Phase' 04/05/23 19:20:46.96 +STEP: Container 'terminate-cmd-rpof': should get the expected 'Ready' condition 04/05/23 19:20:48.973 +STEP: Container 'terminate-cmd-rpof': should get the expected 'State' 04/05/23 19:20:48.98 +STEP: Container 'terminate-cmd-rpof': should be possible to delete [NodeConformance] 04/05/23 19:20:48.98 +STEP: Container 'terminate-cmd-rpn': should get the expected 'RestartCount' 04/05/23 19:20:49.006 +STEP: Container 'terminate-cmd-rpn': should get the expected 'Phase' 04/05/23 19:20:50.014 +STEP: Container 'terminate-cmd-rpn': should get the expected 'Ready' condition 04/05/23 19:20:56.043 +STEP: Container 'terminate-cmd-rpn': should get the expected 'State' 04/05/23 19:20:56.051 +STEP: Container 'terminate-cmd-rpn': should be possible to delete [NodeConformance] 04/05/23 19:20:56.051 +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 +Apr 5 19:20:56.077: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 +STEP: Destroying namespace "container-runtime-4995" for this suite. 04/05/23 19:20:56.083 +------------------------------ +• [SLOW TEST] [37.333 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:44 + when starting a container that exits + test/e2e/common/node/runtime.go:45 + should run with the expected status [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:52 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:20:18.758 + Apr 5 19:20:18.758: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-runtime 04/05/23 19:20:18.759 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:18.775 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:18.777 + [BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 + [It] should run with the expected status [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:52 + STEP: Container 'terminate-cmd-rpa': should get the expected 'RestartCount' 04/05/23 19:20:18.787 + STEP: Container 'terminate-cmd-rpa': should get the expected 'Phase' 04/05/23 19:20:40.89 + STEP: Container 'terminate-cmd-rpa': should get the expected 'Ready' condition 04/05/23 19:20:40.893 + STEP: Container 'terminate-cmd-rpa': should get the expected 'State' 04/05/23 19:20:40.9 + STEP: Container 'terminate-cmd-rpa': should be possible to delete [NodeConformance] 04/05/23 19:20:40.9 + STEP: Container 'terminate-cmd-rpof': should get the expected 'RestartCount' 04/05/23 19:20:40.924 + STEP: Container 'terminate-cmd-rpof': should get the expected 'Phase' 04/05/23 19:20:46.96 + STEP: Container 'terminate-cmd-rpof': should get the expected 'Ready' condition 04/05/23 19:20:48.973 + STEP: Container 'terminate-cmd-rpof': should get the expected 'State' 04/05/23 19:20:48.98 + STEP: Container 'terminate-cmd-rpof': should be possible to delete [NodeConformance] 04/05/23 19:20:48.98 + STEP: Container 'terminate-cmd-rpn': should get the expected 'RestartCount' 04/05/23 19:20:49.006 + STEP: Container 'terminate-cmd-rpn': should get the expected 'Phase' 04/05/23 19:20:50.014 + STEP: Container 'terminate-cmd-rpn': should get the expected 'Ready' condition 04/05/23 19:20:56.043 + STEP: Container 'terminate-cmd-rpn': should get the expected 'State' 04/05/23 19:20:56.051 + STEP: Container 'terminate-cmd-rpn': should be possible to delete [NodeConformance] 04/05/23 19:20:56.051 + [AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 + Apr 5 19:20:56.077: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 + STEP: Destroying namespace "container-runtime-4995" for this suite. 04/05/23 19:20:56.083 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate configmap [Conformance] + test/e2e/apimachinery/webhook.go:252 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:20:56.094 +Apr 5 19:20:56.094: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:20:56.095 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:56.107 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:56.11 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:20:56.129 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:20:56.695 +STEP: Deploying the webhook pod 04/05/23 19:20:56.705 +STEP: Wait for the deployment to be ready 04/05/23 19:20:56.719 +Apr 5 19:20:56.726: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:20:58.739: 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(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:21:00.744: 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(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:21:02.745 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:21:02.762 +Apr 5 19:21:03.763: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate configmap [Conformance] + test/e2e/apimachinery/webhook.go:252 +STEP: Registering the mutating configmap webhook via the AdmissionRegistration API 04/05/23 19:21:03.767 +STEP: create a configmap that should be updated by the webhook 04/05/23 19:21:03.783 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:21:03.802: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-127" for this suite. 04/05/23 19:21:03.876 +STEP: Destroying namespace "webhook-127-markers" for this suite. 04/05/23 19:21:03.887 +------------------------------ +• [SLOW TEST] [7.802 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate configmap [Conformance] + test/e2e/apimachinery/webhook.go:252 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:20:56.094 + Apr 5 19:20:56.094: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:20:56.095 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:20:56.107 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:20:56.11 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:20:56.129 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:20:56.695 + STEP: Deploying the webhook pod 04/05/23 19:20:56.705 + STEP: Wait for the deployment to be ready 04/05/23 19:20:56.719 + Apr 5 19:20:56.726: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:20:58.739: 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(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:21:00.744: 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(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 20, 56, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:21:02.745 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:21:02.762 + Apr 5 19:21:03.763: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should mutate configmap [Conformance] + test/e2e/apimachinery/webhook.go:252 + STEP: Registering the mutating configmap webhook via the AdmissionRegistration API 04/05/23 19:21:03.767 + STEP: create a configmap that should be updated by the webhook 04/05/23 19:21:03.783 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:21:03.802: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-127" for this suite. 04/05/23 19:21:03.876 + STEP: Destroying namespace "webhook-127-markers" for this suite. 04/05/23 19:21:03.887 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should patch a pod status [Conformance] + test/e2e/common/node/pods.go:1083 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:21:03.897 +Apr 5 19:21:03.897: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 19:21:03.898 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:03.918 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:03.921 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should patch a pod status [Conformance] + test/e2e/common/node/pods.go:1083 +STEP: Create a pod 04/05/23 19:21:03.925 +Apr 5 19:21:03.936: INFO: Waiting up to 5m0s for pod "pod-jbx2j" in namespace "pods-1853" to be "running" +Apr 5 19:21:03.938: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 2.703211ms +Apr 5 19:21:05.942: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 2.006599427s +Apr 5 19:21:07.944: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007948793s +Apr 5 19:21:09.944: INFO: Pod "pod-jbx2j": Phase="Running", Reason="", readiness=true. Elapsed: 6.008268748s +Apr 5 19:21:09.944: INFO: Pod "pod-jbx2j" satisfied condition "running" +STEP: patching /status 04/05/23 19:21:09.944 +Apr 5 19:21:09.952: INFO: Status Message: "Patched by e2e test" and Reason: "E2E" +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 19:21:09.952: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-1853" for this suite. 04/05/23 19:21:09.958 +------------------------------ +• [SLOW TEST] [6.068 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should patch a pod status [Conformance] + test/e2e/common/node/pods.go:1083 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:21:03.897 + Apr 5 19:21:03.897: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 19:21:03.898 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:03.918 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:03.921 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should patch a pod status [Conformance] + test/e2e/common/node/pods.go:1083 + STEP: Create a pod 04/05/23 19:21:03.925 + Apr 5 19:21:03.936: INFO: Waiting up to 5m0s for pod "pod-jbx2j" in namespace "pods-1853" to be "running" + Apr 5 19:21:03.938: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 2.703211ms + Apr 5 19:21:05.942: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 2.006599427s + Apr 5 19:21:07.944: INFO: Pod "pod-jbx2j": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007948793s + Apr 5 19:21:09.944: INFO: Pod "pod-jbx2j": Phase="Running", Reason="", readiness=true. Elapsed: 6.008268748s + Apr 5 19:21:09.944: INFO: Pod "pod-jbx2j" satisfied condition "running" + STEP: patching /status 04/05/23 19:21:09.944 + Apr 5 19:21:09.952: INFO: Status Message: "Patched by e2e test" and Reason: "E2E" + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 19:21:09.952: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-1853" for this suite. 04/05/23 19:21:09.958 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with projected pod [Conformance] + test/e2e/storage/subpath.go:106 +[BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:21:09.971 +Apr 5 19:21:09.971: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename subpath 04/05/23 19:21:09.972 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:09.989 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:09.992 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data 04/05/23 19:21:09.995 +[It] should support subpaths with projected pod [Conformance] + test/e2e/storage/subpath.go:106 +STEP: Creating pod pod-subpath-test-projected-57zf 04/05/23 19:21:10.004 +STEP: Creating a pod to test atomic-volume-subpath 04/05/23 19:21:10.004 +Apr 5 19:21:10.016: INFO: Waiting up to 5m0s for pod "pod-subpath-test-projected-57zf" in namespace "subpath-3464" to be "Succeeded or Failed" +Apr 5 19:21:10.019: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.13898ms +Apr 5 19:21:12.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008368142s +Apr 5 19:21:14.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008085846s +Apr 5 19:21:16.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 6.007816335s +Apr 5 19:21:18.026: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 8.009874154s +Apr 5 19:21:20.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 10.007770064s +Apr 5 19:21:22.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 12.007173019s +Apr 5 19:21:24.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 14.008611078s +Apr 5 19:21:26.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 16.008334736s +Apr 5 19:21:28.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 18.007177717s +Apr 5 19:21:30.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 20.007095187s +Apr 5 19:21:32.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 22.009255322s +Apr 5 19:21:34.029: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 24.012912828s +Apr 5 19:21:36.026: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=false. Elapsed: 26.009413432s +Apr 5 19:21:38.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.00794624s +STEP: Saw pod success 04/05/23 19:21:38.024 +Apr 5 19:21:38.024: INFO: Pod "pod-subpath-test-projected-57zf" satisfied condition "Succeeded or Failed" +Apr 5 19:21:38.027: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-projected-57zf container test-container-subpath-projected-57zf: +STEP: delete the pod 04/05/23 19:21:38.045 +Apr 5 19:21:38.056: INFO: Waiting for pod pod-subpath-test-projected-57zf to disappear +Apr 5 19:21:38.059: INFO: Pod pod-subpath-test-projected-57zf no longer exists +STEP: Deleting pod pod-subpath-test-projected-57zf 04/05/23 19:21:38.059 +Apr 5 19:21:38.059: INFO: Deleting pod "pod-subpath-test-projected-57zf" in namespace "subpath-3464" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 +Apr 5 19:21:38.062: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 +STEP: Destroying namespace "subpath-3464" for this suite. 04/05/23 19:21:38.067 +------------------------------ +• [SLOW TEST] [28.103 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/storage/subpath.go:106 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:21:09.971 + Apr 5 19:21:09.971: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename subpath 04/05/23 19:21:09.972 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:09.989 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:09.992 + [BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 + STEP: Setting up data 04/05/23 19:21:09.995 + [It] should support subpaths with projected pod [Conformance] + test/e2e/storage/subpath.go:106 + STEP: Creating pod pod-subpath-test-projected-57zf 04/05/23 19:21:10.004 + STEP: Creating a pod to test atomic-volume-subpath 04/05/23 19:21:10.004 + Apr 5 19:21:10.016: INFO: Waiting up to 5m0s for pod "pod-subpath-test-projected-57zf" in namespace "subpath-3464" to be "Succeeded or Failed" + Apr 5 19:21:10.019: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.13898ms + Apr 5 19:21:12.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008368142s + Apr 5 19:21:14.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008085846s + Apr 5 19:21:16.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 6.007816335s + Apr 5 19:21:18.026: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 8.009874154s + Apr 5 19:21:20.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 10.007770064s + Apr 5 19:21:22.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 12.007173019s + Apr 5 19:21:24.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 14.008611078s + Apr 5 19:21:26.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 16.008334736s + Apr 5 19:21:28.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 18.007177717s + Apr 5 19:21:30.023: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 20.007095187s + Apr 5 19:21:32.025: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 22.009255322s + Apr 5 19:21:34.029: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=true. Elapsed: 24.012912828s + Apr 5 19:21:36.026: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Running", Reason="", readiness=false. Elapsed: 26.009413432s + Apr 5 19:21:38.024: INFO: Pod "pod-subpath-test-projected-57zf": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.00794624s + STEP: Saw pod success 04/05/23 19:21:38.024 + Apr 5 19:21:38.024: INFO: Pod "pod-subpath-test-projected-57zf" satisfied condition "Succeeded or Failed" + Apr 5 19:21:38.027: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-projected-57zf container test-container-subpath-projected-57zf: + STEP: delete the pod 04/05/23 19:21:38.045 + Apr 5 19:21:38.056: INFO: Waiting for pod pod-subpath-test-projected-57zf to disappear + Apr 5 19:21:38.059: INFO: Pod pod-subpath-test-projected-57zf no longer exists + STEP: Deleting pod pod-subpath-test-projected-57zf 04/05/23 19:21:38.059 + Apr 5 19:21:38.059: INFO: Deleting pod "pod-subpath-test-projected-57zf" in namespace "subpath-3464" + [AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 + Apr 5 19:21:38.062: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 + STEP: Destroying namespace "subpath-3464" for this suite. 04/05/23 19:21:38.067 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-node] Probing container + should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:199 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:21:38.074 +Apr 5 19:21:38.074: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 19:21:38.076 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:38.09 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:38.093 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:199 +STEP: Creating pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 in namespace container-probe-4329 04/05/23 19:21:38.096 +Apr 5 19:21:38.109: INFO: Waiting up to 5m0s for pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428" in namespace "container-probe-4329" to be "not pending" +Apr 5 19:21:38.114: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 4.912698ms +Apr 5 19:21:40.120: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010784803s +Apr 5 19:21:42.119: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010004158s +Apr 5 19:21:44.118: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Running", Reason="", readiness=true. Elapsed: 6.009011674s +Apr 5 19:21:44.119: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428" satisfied condition "not pending" +Apr 5 19:21:44.119: INFO: Started pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 in namespace container-probe-4329 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:21:44.119 +Apr 5 19:21:44.122: INFO: Initial restart count of pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is 0 +Apr 5 19:22:00.162: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 1 (16.03951806s elapsed) +Apr 5 19:22:20.215: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 2 (36.092864019s elapsed) +Apr 5 19:22:40.266: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 3 (56.14349708s elapsed) +Apr 5 19:23:00.323: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 4 (1m16.200496731s elapsed) +Apr 5 19:24:10.509: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 5 (2m26.387317459s elapsed) +STEP: deleting the pod 04/05/23 19:24:10.51 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:10.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-4329" for this suite. 04/05/23 19:24:10.533 +------------------------------ +• [SLOW TEST] [152.479 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:199 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:21:38.074 + Apr 5 19:21:38.074: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 19:21:38.076 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:21:38.09 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:21:38.093 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:199 + STEP: Creating pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 in namespace container-probe-4329 04/05/23 19:21:38.096 + Apr 5 19:21:38.109: INFO: Waiting up to 5m0s for pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428" in namespace "container-probe-4329" to be "not pending" + Apr 5 19:21:38.114: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 4.912698ms + Apr 5 19:21:40.120: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010784803s + Apr 5 19:21:42.119: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010004158s + Apr 5 19:21:44.118: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428": Phase="Running", Reason="", readiness=true. Elapsed: 6.009011674s + Apr 5 19:21:44.119: INFO: Pod "liveness-03d4bd60-6eb2-405a-a284-923a1ee19428" satisfied condition "not pending" + Apr 5 19:21:44.119: INFO: Started pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 in namespace container-probe-4329 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:21:44.119 + Apr 5 19:21:44.122: INFO: Initial restart count of pod liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is 0 + Apr 5 19:22:00.162: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 1 (16.03951806s elapsed) + Apr 5 19:22:20.215: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 2 (36.092864019s elapsed) + Apr 5 19:22:40.266: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 3 (56.14349708s elapsed) + Apr 5 19:23:00.323: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 4 (1m16.200496731s elapsed) + Apr 5 19:24:10.509: INFO: Restart count of pod container-probe-4329/liveness-03d4bd60-6eb2-405a-a284-923a1ee19428 is now 5 (2m26.387317459s elapsed) + STEP: deleting the pod 04/05/23 19:24:10.51 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:10.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-4329" for this suite. 04/05/23 19:24:10.533 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-instrumentation] Events + should manage the lifecycle of an event [Conformance] + test/e2e/instrumentation/core_events.go:57 +[BeforeEach] [sig-instrumentation] Events + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:10.553 +Apr 5 19:24:10.553: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename events 04/05/23 19:24:10.554 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:10.577 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:10.579 +[BeforeEach] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:31 +[It] should manage the lifecycle of an event [Conformance] + test/e2e/instrumentation/core_events.go:57 +STEP: creating a test event 04/05/23 19:24:10.583 +STEP: listing all events in all namespaces 04/05/23 19:24:10.59 +STEP: patching the test event 04/05/23 19:24:10.597 +STEP: fetching the test event 04/05/23 19:24:10.603 +STEP: updating the test event 04/05/23 19:24:10.608 +STEP: getting the test event 04/05/23 19:24:10.617 +STEP: deleting the test event 04/05/23 19:24:10.621 +STEP: listing all events in all namespaces 04/05/23 19:24:10.63 +[AfterEach] [sig-instrumentation] Events + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:10.636: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-instrumentation] Events + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-instrumentation] Events + tear down framework | framework.go:193 +STEP: Destroying namespace "events-5947" for this suite. 04/05/23 19:24:10.642 +------------------------------ +• [0.095 seconds] +[sig-instrumentation] Events +test/e2e/instrumentation/common/framework.go:23 + should manage the lifecycle of an event [Conformance] + test/e2e/instrumentation/core_events.go:57 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-instrumentation] Events + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:10.553 + Apr 5 19:24:10.553: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename events 04/05/23 19:24:10.554 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:10.577 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:10.579 + [BeforeEach] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:31 + [It] should manage the lifecycle of an event [Conformance] + test/e2e/instrumentation/core_events.go:57 + STEP: creating a test event 04/05/23 19:24:10.583 + STEP: listing all events in all namespaces 04/05/23 19:24:10.59 + STEP: patching the test event 04/05/23 19:24:10.597 + STEP: fetching the test event 04/05/23 19:24:10.603 + STEP: updating the test event 04/05/23 19:24:10.608 + STEP: getting the test event 04/05/23 19:24:10.617 + STEP: deleting the test event 04/05/23 19:24:10.621 + STEP: listing all events in all namespaces 04/05/23 19:24:10.63 + [AfterEach] [sig-instrumentation] Events + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:10.636: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-instrumentation] Events + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-instrumentation] Events + tear down framework | framework.go:193 + STEP: Destroying namespace "events-5947" for this suite. 04/05/23 19:24:10.642 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl patch + should add annotations for pods in rc [Conformance] + test/e2e/kubectl/kubectl.go:1652 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:10.651 +Apr 5 19:24:10.651: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:24:10.652 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:10.665 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:10.668 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should add annotations for pods in rc [Conformance] + test/e2e/kubectl/kubectl.go:1652 +STEP: creating Agnhost RC 04/05/23 19:24:10.671 +Apr 5 19:24:10.672: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7368 create -f -' +Apr 5 19:24:11.098: INFO: stderr: "" +Apr 5 19:24:11.098: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. 04/05/23 19:24:11.098 +Apr 5 19:24:12.102: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:12.102: INFO: Found 0 / 1 +Apr 5 19:24:13.103: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:13.103: INFO: Found 0 / 1 +Apr 5 19:24:14.103: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:14.103: INFO: Found 0 / 1 +Apr 5 19:24:15.104: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:15.104: INFO: Found 0 / 1 +Apr 5 19:24:16.102: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:16.102: INFO: Found 1 / 1 +Apr 5 19:24:16.102: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +STEP: patching all pods 04/05/23 19:24:16.102 +Apr 5 19:24:16.106: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:16.106: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Apr 5 19:24:16.106: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7368 patch pod agnhost-primary-5v4jq -p {"metadata":{"annotations":{"x":"y"}}}' +Apr 5 19:24:16.204: INFO: stderr: "" +Apr 5 19:24:16.204: INFO: stdout: "pod/agnhost-primary-5v4jq patched\n" +STEP: checking annotations 04/05/23 19:24:16.204 +Apr 5 19:24:16.208: INFO: Selector matched 1 pods for map[app:agnhost] +Apr 5 19:24:16.208: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:16.208: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-7368" for this suite. 04/05/23 19:24:16.217 +------------------------------ +• [SLOW TEST] [5.574 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl patch + test/e2e/kubectl/kubectl.go:1646 + should add annotations for pods in rc [Conformance] + test/e2e/kubectl/kubectl.go:1652 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:10.651 + Apr 5 19:24:10.651: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:24:10.652 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:10.665 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:10.668 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should add annotations for pods in rc [Conformance] + test/e2e/kubectl/kubectl.go:1652 + STEP: creating Agnhost RC 04/05/23 19:24:10.671 + Apr 5 19:24:10.672: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7368 create -f -' + Apr 5 19:24:11.098: INFO: stderr: "" + Apr 5 19:24:11.098: INFO: stdout: "replicationcontroller/agnhost-primary created\n" + STEP: Waiting for Agnhost primary to start. 04/05/23 19:24:11.098 + Apr 5 19:24:12.102: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:12.102: INFO: Found 0 / 1 + Apr 5 19:24:13.103: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:13.103: INFO: Found 0 / 1 + Apr 5 19:24:14.103: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:14.103: INFO: Found 0 / 1 + Apr 5 19:24:15.104: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:15.104: INFO: Found 0 / 1 + Apr 5 19:24:16.102: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:16.102: INFO: Found 1 / 1 + Apr 5 19:24:16.102: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 + STEP: patching all pods 04/05/23 19:24:16.102 + Apr 5 19:24:16.106: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:16.106: INFO: ForEach: Found 1 pods from the filter. Now looping through them. + Apr 5 19:24:16.106: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-7368 patch pod agnhost-primary-5v4jq -p {"metadata":{"annotations":{"x":"y"}}}' + Apr 5 19:24:16.204: INFO: stderr: "" + Apr 5 19:24:16.204: INFO: stdout: "pod/agnhost-primary-5v4jq patched\n" + STEP: checking annotations 04/05/23 19:24:16.204 + Apr 5 19:24:16.208: INFO: Selector matched 1 pods for map[app:agnhost] + Apr 5 19:24:16.208: INFO: ForEach: Found 1 pods from the filter. Now looping through them. + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:16.208: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-7368" for this suite. 04/05/23 19:24:16.217 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + should list and delete a collection of ReplicaSets [Conformance] + test/e2e/apps/replica_set.go:165 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:16.228 +Apr 5 19:24:16.228: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 19:24:16.23 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:16.245 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:16.248 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] should list and delete a collection of ReplicaSets [Conformance] + test/e2e/apps/replica_set.go:165 +STEP: Create a ReplicaSet 04/05/23 19:24:16.251 +STEP: Verify that the required pods have come up 04/05/23 19:24:16.258 +Apr 5 19:24:16.263: INFO: Pod name sample-pod: Found 0 pods out of 3 +Apr 5 19:24:21.267: INFO: Pod name sample-pod: Found 3 pods out of 3 +STEP: ensuring each pod is running 04/05/23 19:24:21.267 +Apr 5 19:24:21.270: INFO: Replica Status: {Replicas:3 FullyLabeledReplicas:3 ReadyReplicas:3 AvailableReplicas:3 ObservedGeneration:1 Conditions:[]} +STEP: Listing all ReplicaSets 04/05/23 19:24:21.27 +STEP: DeleteCollection of the ReplicaSets 04/05/23 19:24:21.275 +STEP: After DeleteCollection verify that ReplicaSets have been deleted 04/05/23 19:24:21.284 +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:21.288: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-2358" for this suite. 04/05/23 19:24:21.302 +------------------------------ +• [SLOW TEST] [5.087 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should list and delete a collection of ReplicaSets [Conformance] + test/e2e/apps/replica_set.go:165 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:16.228 + Apr 5 19:24:16.228: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 19:24:16.23 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:16.245 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:16.248 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] should list and delete a collection of ReplicaSets [Conformance] + test/e2e/apps/replica_set.go:165 + STEP: Create a ReplicaSet 04/05/23 19:24:16.251 + STEP: Verify that the required pods have come up 04/05/23 19:24:16.258 + Apr 5 19:24:16.263: INFO: Pod name sample-pod: Found 0 pods out of 3 + Apr 5 19:24:21.267: INFO: Pod name sample-pod: Found 3 pods out of 3 + STEP: ensuring each pod is running 04/05/23 19:24:21.267 + Apr 5 19:24:21.270: INFO: Replica Status: {Replicas:3 FullyLabeledReplicas:3 ReadyReplicas:3 AvailableReplicas:3 ObservedGeneration:1 Conditions:[]} + STEP: Listing all ReplicaSets 04/05/23 19:24:21.27 + STEP: DeleteCollection of the ReplicaSets 04/05/23 19:24:21.275 + STEP: After DeleteCollection verify that ReplicaSets have been deleted 04/05/23 19:24:21.284 + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:21.288: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-2358" for this suite. 04/05/23 19:24:21.302 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + should include custom resource definition resources in discovery documents [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:198 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:21.315 +Apr 5 19:24:21.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 19:24:21.317 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:21.345 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:21.354 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] should include custom resource definition resources in discovery documents [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:198 +STEP: fetching the /apis discovery document 04/05/23 19:24:21.359 +STEP: finding the apiextensions.k8s.io API group in the /apis discovery document 04/05/23 19:24:21.361 +STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis discovery document 04/05/23 19:24:21.361 +STEP: fetching the /apis/apiextensions.k8s.io discovery document 04/05/23 19:24:21.361 +STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis/apiextensions.k8s.io discovery document 04/05/23 19:24:21.364 +STEP: fetching the /apis/apiextensions.k8s.io/v1 discovery document 04/05/23 19:24:21.364 +STEP: finding customresourcedefinitions resources in the /apis/apiextensions.k8s.io/v1 discovery document 04/05/23 19:24:21.365 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:21.366: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "custom-resource-definition-2613" for this suite. 04/05/23 19:24:21.372 +------------------------------ +• [0.063 seconds] +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should include custom resource definition resources in discovery documents [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:198 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:21.315 + Apr 5 19:24:21.315: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 19:24:21.317 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:21.345 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:21.354 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] should include custom resource definition resources in discovery documents [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:198 + STEP: fetching the /apis discovery document 04/05/23 19:24:21.359 + STEP: finding the apiextensions.k8s.io API group in the /apis discovery document 04/05/23 19:24:21.361 + STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis discovery document 04/05/23 19:24:21.361 + STEP: fetching the /apis/apiextensions.k8s.io discovery document 04/05/23 19:24:21.361 + STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis/apiextensions.k8s.io discovery document 04/05/23 19:24:21.364 + STEP: fetching the /apis/apiextensions.k8s.io/v1 discovery document 04/05/23 19:24:21.364 + STEP: finding customresourcedefinitions resources in the /apis/apiextensions.k8s.io/v1 discovery document 04/05/23 19:24:21.365 + [AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:21.366: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "custom-resource-definition-2613" for this suite. 04/05/23 19:24:21.372 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:137 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:21.378 +Apr 5 19:24:21.378: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:24:21.38 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:21.396 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:21.398 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:137 +STEP: Creating a pod to test emptydir 0666 on tmpfs 04/05/23 19:24:21.401 +Apr 5 19:24:21.410: INFO: Waiting up to 5m0s for pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7" in namespace "emptydir-6353" to be "Succeeded or Failed" +Apr 5 19:24:21.416: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.027364ms +Apr 5 19:24:23.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010574179s +Apr 5 19:24:25.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011502023s +Apr 5 19:24:27.420: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010011488s +Apr 5 19:24:29.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010738684s +STEP: Saw pod success 04/05/23 19:24:29.421 +Apr 5 19:24:29.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7" satisfied condition "Succeeded or Failed" +Apr 5 19:24:29.425: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 container test-container: +STEP: delete the pod 04/05/23 19:24:29.439 +Apr 5 19:24:29.454: INFO: Waiting for pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 to disappear +Apr 5 19:24:29.457: INFO: Pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:29.457: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-6353" for this suite. 04/05/23 19:24:29.462 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:137 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:21.378 + Apr 5 19:24:21.378: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:24:21.38 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:21.396 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:21.398 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:137 + STEP: Creating a pod to test emptydir 0666 on tmpfs 04/05/23 19:24:21.401 + Apr 5 19:24:21.410: INFO: Waiting up to 5m0s for pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7" in namespace "emptydir-6353" to be "Succeeded or Failed" + Apr 5 19:24:21.416: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.027364ms + Apr 5 19:24:23.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010574179s + Apr 5 19:24:25.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011502023s + Apr 5 19:24:27.420: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010011488s + Apr 5 19:24:29.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010738684s + STEP: Saw pod success 04/05/23 19:24:29.421 + Apr 5 19:24:29.421: INFO: Pod "pod-95c65f44-e1c0-4d48-b392-2333623598b7" satisfied condition "Succeeded or Failed" + Apr 5 19:24:29.425: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 container test-container: + STEP: delete the pod 04/05/23 19:24:29.439 + Apr 5 19:24:29.454: INFO: Waiting for pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 to disappear + Apr 5 19:24:29.457: INFO: Pod pod-95c65f44-e1c0-4d48-b392-2333623598b7 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:29.457: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-6353" for this suite. 04/05/23 19:24:29.462 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:236 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:29.469 +Apr 5 19:24:29.469: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:24:29.471 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:29.486 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:29.489 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:236 +Apr 5 19:24:29.494: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 19:24:32.988 +Apr 5 19:24:32.988: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 create -f -' +Apr 5 19:24:34.550: INFO: stderr: "" +Apr 5 19:24:34.550: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" +Apr 5 19:24:34.550: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 delete e2e-test-crd-publish-openapi-9215-crds test-cr' +Apr 5 19:24:34.654: INFO: stderr: "" +Apr 5 19:24:34.654: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" +Apr 5 19:24:34.654: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 apply -f -' +Apr 5 19:24:36.082: INFO: stderr: "" +Apr 5 19:24:36.082: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" +Apr 5 19:24:36.082: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 delete e2e-test-crd-publish-openapi-9215-crds test-cr' +Apr 5 19:24:36.182: INFO: stderr: "" +Apr 5 19:24:36.182: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR 04/05/23 19:24:36.182 +Apr 5 19:24:36.182: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 explain e2e-test-crd-publish-openapi-9215-crds' +Apr 5 19:24:36.622: INFO: stderr: "" +Apr 5 19:24:36.622: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-9215-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/node/init/init.go:32 +Apr 5 19:24:40.679: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-1494" for this suite. 04/05/23 19:24:40.693 +------------------------------ +• [SLOW TEST] [11.232 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/apimachinery/crd_publish_openapi.go:236 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:29.469 + Apr 5 19:24:29.469: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:24:29.471 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:29.486 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:29.489 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:236 + Apr 5 19:24:29.494: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 19:24:32.988 + Apr 5 19:24:32.988: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 create -f -' + Apr 5 19:24:34.550: INFO: stderr: "" + Apr 5 19:24:34.550: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" + Apr 5 19:24:34.550: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 delete e2e-test-crd-publish-openapi-9215-crds test-cr' + Apr 5 19:24:34.654: INFO: stderr: "" + Apr 5 19:24:34.654: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" + Apr 5 19:24:34.654: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 apply -f -' + Apr 5 19:24:36.082: INFO: stderr: "" + Apr 5 19:24:36.082: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" + Apr 5 19:24:36.082: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 --namespace=crd-publish-openapi-1494 delete e2e-test-crd-publish-openapi-9215-crds test-cr' + Apr 5 19:24:36.182: INFO: stderr: "" + Apr 5 19:24:36.182: INFO: stdout: "e2e-test-crd-publish-openapi-9215-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" + STEP: kubectl explain works to explain CR 04/05/23 19:24:36.182 + Apr 5 19:24:36.182: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-1494 explain e2e-test-crd-publish-openapi-9215-crds' + Apr 5 19:24:36.622: INFO: stderr: "" + Apr 5 19:24:36.622: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-9215-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/node/init/init.go:32 + Apr 5 19:24:40.679: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-1494" for this suite. 04/05/23 19:24:40.693 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:217 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:40.704 +Apr 5 19:24:40.705: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:24:40.707 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:40.721 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:40.724 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:217 +STEP: Creating a pod to test emptydir 0777 on node default medium 04/05/23 19:24:40.727 +Apr 5 19:24:40.735: INFO: Waiting up to 5m0s for pod "pod-fbc24495-2872-492c-84ff-bff886f67450" in namespace "emptydir-9002" to be "Succeeded or Failed" +Apr 5 19:24:40.738: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 3.279128ms +Apr 5 19:24:42.742: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007070969s +Apr 5 19:24:44.744: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008425557s +Apr 5 19:24:46.745: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.009697512s +STEP: Saw pod success 04/05/23 19:24:46.745 +Apr 5 19:24:46.745: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450" satisfied condition "Succeeded or Failed" +Apr 5 19:24:46.749: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-fbc24495-2872-492c-84ff-bff886f67450 container test-container: +STEP: delete the pod 04/05/23 19:24:46.756 +Apr 5 19:24:46.766: INFO: Waiting for pod pod-fbc24495-2872-492c-84ff-bff886f67450 to disappear +Apr 5 19:24:46.769: INFO: Pod pod-fbc24495-2872-492c-84ff-bff886f67450 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:46.770: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-9002" for this suite. 04/05/23 19:24:46.776 +------------------------------ +• [SLOW TEST] [6.077 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:217 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:40.704 + Apr 5 19:24:40.705: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:24:40.707 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:40.721 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:40.724 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:217 + STEP: Creating a pod to test emptydir 0777 on node default medium 04/05/23 19:24:40.727 + Apr 5 19:24:40.735: INFO: Waiting up to 5m0s for pod "pod-fbc24495-2872-492c-84ff-bff886f67450" in namespace "emptydir-9002" to be "Succeeded or Failed" + Apr 5 19:24:40.738: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 3.279128ms + Apr 5 19:24:42.742: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007070969s + Apr 5 19:24:44.744: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008425557s + Apr 5 19:24:46.745: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.009697512s + STEP: Saw pod success 04/05/23 19:24:46.745 + Apr 5 19:24:46.745: INFO: Pod "pod-fbc24495-2872-492c-84ff-bff886f67450" satisfied condition "Succeeded or Failed" + Apr 5 19:24:46.749: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-fbc24495-2872-492c-84ff-bff886f67450 container test-container: + STEP: delete the pod 04/05/23 19:24:46.756 + Apr 5 19:24:46.766: INFO: Waiting for pod pod-fbc24495-2872-492c-84ff-bff886f67450 to disappear + Apr 5 19:24:46.769: INFO: Pod pod-fbc24495-2872-492c-84ff-bff886f67450 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:46.770: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-9002" for this suite. 04/05/23 19:24:46.776 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-cli] Kubectl client Kubectl api-versions + should check if v1 is in available api versions [Conformance] + test/e2e/kubectl/kubectl.go:824 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:46.784 +Apr 5 19:24:46.784: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:24:46.785 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.802 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:46.805 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check if v1 is in available api versions [Conformance] + test/e2e/kubectl/kubectl.go:824 +STEP: validating api versions 04/05/23 19:24:46.808 +Apr 5 19:24:46.808: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8791 api-versions' +Apr 5 19:24:46.916: INFO: stderr: "" +Apr 5 19:24:46.916: INFO: stdout: "acme.cert-manager.io/v1\naddons.cluster.x-k8s.io/v1alpha3\naddons.cluster.x-k8s.io/v1alpha4\naddons.cluster.x-k8s.io/v1beta1\nadmissionregistration.k8s.io/v1\nanywhere.eks.amazonaws.com/v1alpha1\napiextensions.k8s.io/v1\napiregistration.k8s.io/v1\napps/v1\nauthentication.k8s.io/v1\nauthorization.k8s.io/v1\nautoscaling/v1\nautoscaling/v2\nbatch/v1\nbootstrap.cluster.x-k8s.io/v1alpha3\nbootstrap.cluster.x-k8s.io/v1alpha4\nbootstrap.cluster.x-k8s.io/v1beta1\ncert-manager.io/v1\ncertificates.k8s.io/v1\ncilium.io/v2\ncluster.x-k8s.io/v1alpha3\ncluster.x-k8s.io/v1alpha4\ncluster.x-k8s.io/v1beta1\nclusterctl.cluster.x-k8s.io/v1alpha3\ncontrolplane.cluster.x-k8s.io/v1alpha3\ncontrolplane.cluster.x-k8s.io/v1alpha4\ncontrolplane.cluster.x-k8s.io/v1beta1\ncoordination.k8s.io/v1\ndiscovery.k8s.io/v1\ndistro.eks.amazonaws.com/v1alpha1\netcdcluster.cluster.x-k8s.io/v1alpha3\netcdcluster.cluster.x-k8s.io/v1beta1\nevents.k8s.io/v1\nflowcontrol.apiserver.k8s.io/v1beta2\nflowcontrol.apiserver.k8s.io/v1beta3\ninfrastructure.cluster.x-k8s.io/v1alpha3\ninfrastructure.cluster.x-k8s.io/v1alpha4\ninfrastructure.cluster.x-k8s.io/v1beta1\nipam.cluster.x-k8s.io/v1alpha1\nnetworking.k8s.io/v1\nnode.k8s.io/v1\npackages.eks.amazonaws.com/v1alpha1\npolicy/v1\nrbac.authorization.k8s.io/v1\nruntime.cluster.x-k8s.io/v1alpha1\nscheduling.k8s.io/v1\nstorage.k8s.io/v1\nstorage.k8s.io/v1beta1\nv1\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:46.917: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-8791" for this suite. 04/05/23 19:24:46.923 +------------------------------ +• [0.145 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl api-versions + test/e2e/kubectl/kubectl.go:818 + should check if v1 is in available api versions [Conformance] + test/e2e/kubectl/kubectl.go:824 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:46.784 + Apr 5 19:24:46.784: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:24:46.785 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.802 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:46.805 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check if v1 is in available api versions [Conformance] + test/e2e/kubectl/kubectl.go:824 + STEP: validating api versions 04/05/23 19:24:46.808 + Apr 5 19:24:46.808: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8791 api-versions' + Apr 5 19:24:46.916: INFO: stderr: "" + Apr 5 19:24:46.916: INFO: stdout: "acme.cert-manager.io/v1\naddons.cluster.x-k8s.io/v1alpha3\naddons.cluster.x-k8s.io/v1alpha4\naddons.cluster.x-k8s.io/v1beta1\nadmissionregistration.k8s.io/v1\nanywhere.eks.amazonaws.com/v1alpha1\napiextensions.k8s.io/v1\napiregistration.k8s.io/v1\napps/v1\nauthentication.k8s.io/v1\nauthorization.k8s.io/v1\nautoscaling/v1\nautoscaling/v2\nbatch/v1\nbootstrap.cluster.x-k8s.io/v1alpha3\nbootstrap.cluster.x-k8s.io/v1alpha4\nbootstrap.cluster.x-k8s.io/v1beta1\ncert-manager.io/v1\ncertificates.k8s.io/v1\ncilium.io/v2\ncluster.x-k8s.io/v1alpha3\ncluster.x-k8s.io/v1alpha4\ncluster.x-k8s.io/v1beta1\nclusterctl.cluster.x-k8s.io/v1alpha3\ncontrolplane.cluster.x-k8s.io/v1alpha3\ncontrolplane.cluster.x-k8s.io/v1alpha4\ncontrolplane.cluster.x-k8s.io/v1beta1\ncoordination.k8s.io/v1\ndiscovery.k8s.io/v1\ndistro.eks.amazonaws.com/v1alpha1\netcdcluster.cluster.x-k8s.io/v1alpha3\netcdcluster.cluster.x-k8s.io/v1beta1\nevents.k8s.io/v1\nflowcontrol.apiserver.k8s.io/v1beta2\nflowcontrol.apiserver.k8s.io/v1beta3\ninfrastructure.cluster.x-k8s.io/v1alpha3\ninfrastructure.cluster.x-k8s.io/v1alpha4\ninfrastructure.cluster.x-k8s.io/v1beta1\nipam.cluster.x-k8s.io/v1alpha1\nnetworking.k8s.io/v1\nnode.k8s.io/v1\npackages.eks.amazonaws.com/v1alpha1\npolicy/v1\nrbac.authorization.k8s.io/v1\nruntime.cluster.x-k8s.io/v1alpha1\nscheduling.k8s.io/v1\nstorage.k8s.io/v1\nstorage.k8s.io/v1beta1\nv1\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:46.917: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-8791" for this suite. 04/05/23 19:24:46.923 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:251 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:46.931 +Apr 5 19:24:46.931: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 19:24:46.932 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.946 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:46.949 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:251 +STEP: Creating a test namespace 04/05/23 19:24:46.952 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.967 +STEP: Creating a service in the namespace 04/05/23 19:24:46.97 +STEP: Deleting the namespace 04/05/23 19:24:46.989 +STEP: Waiting for the namespace to be removed. 04/05/23 19:24:47.003 +STEP: Recreating the namespace 04/05/23 19:24:53.007 +STEP: Verifying there is no service in the namespace 04/05/23 19:24:53.027 +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:24:53.030: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-3230" for this suite. 04/05/23 19:24:53.036 +STEP: Destroying namespace "nsdeletetest-7462" for this suite. 04/05/23 19:24:53.043 +Apr 5 19:24:53.046: INFO: Namespace nsdeletetest-7462 was already deleted +STEP: Destroying namespace "nsdeletetest-7090" for this suite. 04/05/23 19:24:53.046 +------------------------------ +• [SLOW TEST] [6.124 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/apimachinery/namespace.go:251 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:46.931 + Apr 5 19:24:46.931: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 19:24:46.932 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.946 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:46.949 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/apimachinery/namespace.go:251 + STEP: Creating a test namespace 04/05/23 19:24:46.952 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:46.967 + STEP: Creating a service in the namespace 04/05/23 19:24:46.97 + STEP: Deleting the namespace 04/05/23 19:24:46.989 + STEP: Waiting for the namespace to be removed. 04/05/23 19:24:47.003 + STEP: Recreating the namespace 04/05/23 19:24:53.007 + STEP: Verifying there is no service in the namespace 04/05/23 19:24:53.027 + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:24:53.030: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-3230" for this suite. 04/05/23 19:24:53.036 + STEP: Destroying namespace "nsdeletetest-7462" for this suite. 04/05/23 19:24:53.043 + Apr 5 19:24:53.046: INFO: Namespace nsdeletetest-7462 was already deleted + STEP: Destroying namespace "nsdeletetest-7090" for this suite. 04/05/23 19:24:53.046 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should schedule multiple jobs concurrently [Conformance] + test/e2e/apps/cronjob.go:69 +[BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:24:53.057 +Apr 5 19:24:53.058: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename cronjob 04/05/23 19:24:53.059 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:53.072 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:53.075 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 +[It] should schedule multiple jobs concurrently [Conformance] + test/e2e/apps/cronjob.go:69 +STEP: Creating a cronjob 04/05/23 19:24:53.078 +STEP: Ensuring more than one job is running at a time 04/05/23 19:24:53.084 +STEP: Ensuring at least two running jobs exists by listing jobs explicitly 04/05/23 19:26:01.09 +STEP: Removing cronjob 04/05/23 19:26:01.093 +[AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 +Apr 5 19:26:01.105: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 +STEP: Destroying namespace "cronjob-7067" for this suite. 04/05/23 19:26:01.111 +------------------------------ +• [SLOW TEST] [68.070 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should schedule multiple jobs concurrently [Conformance] + test/e2e/apps/cronjob.go:69 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:24:53.057 + Apr 5 19:24:53.058: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename cronjob 04/05/23 19:24:53.059 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:24:53.072 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:24:53.075 + [BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 + [It] should schedule multiple jobs concurrently [Conformance] + test/e2e/apps/cronjob.go:69 + STEP: Creating a cronjob 04/05/23 19:24:53.078 + STEP: Ensuring more than one job is running at a time 04/05/23 19:24:53.084 + STEP: Ensuring at least two running jobs exists by listing jobs explicitly 04/05/23 19:26:01.09 + STEP: Removing cronjob 04/05/23 19:26:01.093 + [AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 + Apr 5 19:26:01.105: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 + STEP: Destroying namespace "cronjob-7067" for this suite. 04/05/23 19:26:01.111 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates that NodeSelector is respected if matching [Conformance] + test/e2e/scheduling/predicates.go:466 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:26:01.132 +Apr 5 19:26:01.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-pred 04/05/23 19:26:01.133 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:01.161 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:01.164 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 +Apr 5 19:26:01.167: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Apr 5 19:26:01.181: INFO: Waiting for terminating namespaces to be deleted... +Apr 5 19:26:01.186: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test +Apr 5 19:26:01.201: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container cert-manager-controller ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container cert-manager-cainjector ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container cert-manager-webhook ready: true, restart count 0 +Apr 5 19:26:01.201: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.201: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container controller ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container kube-sonobuoy ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:26:01.202: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:26:01.202: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test +Apr 5 19:26:01.214: INFO: concurrent-28012045-kh5wc from cronjob-7067 started at 2023-04-05 19:25:00 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container c ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: concurrent-28012046-2krml from cronjob-7067 started at 2023-04-05 19:26:00 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container c ready: false, restart count 0 +Apr 5 19:26:01.214: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:26:01.214: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:26:01.214: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test +Apr 5 19:26:01.228: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container cilium-operator ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container e2e ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:26:01.228: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:26:01.228: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates that NodeSelector is respected if matching [Conformance] + test/e2e/scheduling/predicates.go:466 +STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:26:01.229 +Apr 5 19:26:01.237: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-pred-5627" to be "running" +Apr 5 19:26:01.241: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 3.66719ms +Apr 5 19:26:03.245: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007677434s +Apr 5 19:26:05.246: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008816743s +Apr 5 19:26:07.246: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.009078984s +Apr 5 19:26:07.246: INFO: Pod "without-label" satisfied condition "running" +STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:26:07.249 +STEP: Trying to apply a random label on the found node. 04/05/23 19:26:07.264 +STEP: verifying the node has the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 42 04/05/23 19:26:07.278 +STEP: Trying to relaunch the pod, now with labels. 04/05/23 19:26:07.283 +Apr 5 19:26:07.296: INFO: Waiting up to 5m0s for pod "with-labels" in namespace "sched-pred-5627" to be "not pending" +Apr 5 19:26:07.302: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 4.584543ms +Apr 5 19:26:09.307: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009653913s +Apr 5 19:26:11.307: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010333144s +Apr 5 19:26:13.306: INFO: Pod "with-labels": Phase="Running", Reason="", readiness=true. Elapsed: 6.009298784s +Apr 5 19:26:13.306: INFO: Pod "with-labels" satisfied condition "not pending" +STEP: removing the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:26:13.31 +STEP: verifying the node doesn't have the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 04/05/23 19:26:13.329 +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:26:13.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-pred-5627" for this suite. 04/05/23 19:26:13.339 +------------------------------ +• [SLOW TEST] [12.215 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates that NodeSelector is respected if matching [Conformance] + test/e2e/scheduling/predicates.go:466 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:26:01.132 + Apr 5 19:26:01.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-pred 04/05/23 19:26:01.133 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:01.161 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:01.164 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 + Apr 5 19:26:01.167: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready + Apr 5 19:26:01.181: INFO: Waiting for terminating namespaces to be deleted... + Apr 5 19:26:01.186: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test + Apr 5 19:26:01.201: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container cert-manager-controller ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container cert-manager-cainjector ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container cert-manager-webhook ready: true, restart count 0 + Apr 5 19:26:01.201: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.201: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container controller ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container kube-sonobuoy ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:26:01.202: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:26:01.202: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test + Apr 5 19:26:01.214: INFO: concurrent-28012045-kh5wc from cronjob-7067 started at 2023-04-05 19:25:00 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container c ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: concurrent-28012046-2krml from cronjob-7067 started at 2023-04-05 19:26:00 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container c ready: false, restart count 0 + Apr 5 19:26:01.214: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:26:01.214: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:26:01.214: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test + Apr 5 19:26:01.228: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container manager ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container cilium-operator ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container e2e ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:26:01.228: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:26:01.228: INFO: Container systemd-logs ready: true, restart count 0 + [It] validates that NodeSelector is respected if matching [Conformance] + test/e2e/scheduling/predicates.go:466 + STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:26:01.229 + Apr 5 19:26:01.237: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-pred-5627" to be "running" + Apr 5 19:26:01.241: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 3.66719ms + Apr 5 19:26:03.245: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007677434s + Apr 5 19:26:05.246: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008816743s + Apr 5 19:26:07.246: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.009078984s + Apr 5 19:26:07.246: INFO: Pod "without-label" satisfied condition "running" + STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:26:07.249 + STEP: Trying to apply a random label on the found node. 04/05/23 19:26:07.264 + STEP: verifying the node has the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 42 04/05/23 19:26:07.278 + STEP: Trying to relaunch the pod, now with labels. 04/05/23 19:26:07.283 + Apr 5 19:26:07.296: INFO: Waiting up to 5m0s for pod "with-labels" in namespace "sched-pred-5627" to be "not pending" + Apr 5 19:26:07.302: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 4.584543ms + Apr 5 19:26:09.307: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009653913s + Apr 5 19:26:11.307: INFO: Pod "with-labels": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010333144s + Apr 5 19:26:13.306: INFO: Pod "with-labels": Phase="Running", Reason="", readiness=true. Elapsed: 6.009298784s + Apr 5 19:26:13.306: INFO: Pod "with-labels" satisfied condition "not pending" + STEP: removing the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:26:13.31 + STEP: verifying the node doesn't have the label kubernetes.io/e2e-cb098e6b-b78e-4a9b-a440-cc4498a63f25 04/05/23 19:26:13.329 + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:26:13.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-pred-5627" for this suite. 04/05/23 19:26:13.339 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:127 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:26:13.348 +Apr 5 19:26:13.349: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:26:13.351 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:13.365 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:13.368 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:127 +STEP: Creating a pod to test emptydir 0644 on tmpfs 04/05/23 19:26:13.371 +Apr 5 19:26:13.381: INFO: Waiting up to 5m0s for pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707" in namespace "emptydir-838" to be "Succeeded or Failed" +Apr 5 19:26:13.384: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 2.915469ms +Apr 5 19:26:15.389: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008603563s +Apr 5 19:26:17.388: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007530902s +Apr 5 19:26:19.401: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020628887s +Apr 5 19:26:21.389: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008666402s +STEP: Saw pod success 04/05/23 19:26:21.39 +Apr 5 19:26:21.390: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707" satisfied condition "Succeeded or Failed" +Apr 5 19:26:21.393: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 container test-container: +STEP: delete the pod 04/05/23 19:26:21.407 +Apr 5 19:26:21.421: INFO: Waiting for pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 to disappear +Apr 5 19:26:21.424: INFO: Pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:26:21.425: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-838" for this suite. 04/05/23 19:26:21.431 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:127 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:26:13.348 + Apr 5 19:26:13.349: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:26:13.351 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:13.365 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:13.368 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:127 + STEP: Creating a pod to test emptydir 0644 on tmpfs 04/05/23 19:26:13.371 + Apr 5 19:26:13.381: INFO: Waiting up to 5m0s for pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707" in namespace "emptydir-838" to be "Succeeded or Failed" + Apr 5 19:26:13.384: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 2.915469ms + Apr 5 19:26:15.389: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008603563s + Apr 5 19:26:17.388: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007530902s + Apr 5 19:26:19.401: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Pending", Reason="", readiness=false. Elapsed: 6.020628887s + Apr 5 19:26:21.389: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008666402s + STEP: Saw pod success 04/05/23 19:26:21.39 + Apr 5 19:26:21.390: INFO: Pod "pod-7c1153f7-392b-474d-b1f7-e1036eec5707" satisfied condition "Succeeded or Failed" + Apr 5 19:26:21.393: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 container test-container: + STEP: delete the pod 04/05/23 19:26:21.407 + Apr 5 19:26:21.421: INFO: Waiting for pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 to disappear + Apr 5 19:26:21.424: INFO: Pod pod-7c1153f7-392b-474d-b1f7-e1036eec5707 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:26:21.425: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-838" for this suite. 04/05/23 19:26:21.431 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/common/node/expansion.go:297 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:26:21.446 +Apr 5 19:26:21.447: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:26:21.448 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:21.462 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:21.469 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/common/node/expansion.go:297 +STEP: creating the pod 04/05/23 19:26:21.472 +STEP: waiting for pod running 04/05/23 19:26:21.482 +Apr 5 19:26:21.482: INFO: Waiting up to 2m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" to be "running" +Apr 5 19:26:21.485: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 3.340648ms +Apr 5 19:26:23.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007984386s +Apr 5 19:26:25.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007921714s +Apr 5 19:26:27.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Running", Reason="", readiness=true. Elapsed: 6.00823806s +Apr 5 19:26:27.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" satisfied condition "running" +STEP: creating a file in subpath 04/05/23 19:26:27.49 +Apr 5 19:26:27.493: INFO: ExecWithOptions {Command:[/bin/sh -c touch /volume_mount/mypath/foo/test.log] Namespace:var-expansion-4150 PodName:var-expansion-aa622b67-8c44-40de-9754-0cea41941313 ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:26:27.493: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:26:27.494: INFO: ExecWithOptions: Clientset creation +Apr 5 19:26:27.494: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/var-expansion-4150/pods/var-expansion-aa622b67-8c44-40de-9754-0cea41941313/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 04/05/23 19:26:27.576 +Apr 5 19:26:27.579: INFO: ExecWithOptions {Command:[/bin/sh -c test -f /subpath_mount/test.log] Namespace:var-expansion-4150 PodName:var-expansion-aa622b67-8c44-40de-9754-0cea41941313 ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:26:27.580: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:26:27.580: INFO: ExecWithOptions: Clientset creation +Apr 5 19:26:27.580: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/var-expansion-4150/pods/var-expansion-aa622b67-8c44-40de-9754-0cea41941313/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 04/05/23 19:26:27.666 +Apr 5 19:26:28.180: INFO: Successfully updated pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" +STEP: waiting for annotated pod running 04/05/23 19:26:28.18 +Apr 5 19:26:28.180: INFO: Waiting up to 2m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" to be "running" +Apr 5 19:26:28.184: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Running", Reason="", readiness=true. Elapsed: 3.49218ms +Apr 5 19:26:28.184: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" satisfied condition "running" +STEP: deleting the pod gracefully 04/05/23 19:26:28.184 +Apr 5 19:26:28.184: INFO: Deleting pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" +Apr 5 19:26:28.194: INFO: Wait up to 5m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:02.203: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-4150" for this suite. 04/05/23 19:27:02.209 +------------------------------ +• [SLOW TEST] [40.771 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/common/node/expansion.go:297 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:26:21.446 + Apr 5 19:26:21.447: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:26:21.448 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:26:21.462 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:26:21.469 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/common/node/expansion.go:297 + STEP: creating the pod 04/05/23 19:26:21.472 + STEP: waiting for pod running 04/05/23 19:26:21.482 + Apr 5 19:26:21.482: INFO: Waiting up to 2m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" to be "running" + Apr 5 19:26:21.485: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 3.340648ms + Apr 5 19:26:23.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007984386s + Apr 5 19:26:25.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007921714s + Apr 5 19:26:27.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Running", Reason="", readiness=true. Elapsed: 6.00823806s + Apr 5 19:26:27.490: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" satisfied condition "running" + STEP: creating a file in subpath 04/05/23 19:26:27.49 + Apr 5 19:26:27.493: INFO: ExecWithOptions {Command:[/bin/sh -c touch /volume_mount/mypath/foo/test.log] Namespace:var-expansion-4150 PodName:var-expansion-aa622b67-8c44-40de-9754-0cea41941313 ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:26:27.493: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:26:27.494: INFO: ExecWithOptions: Clientset creation + Apr 5 19:26:27.494: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/var-expansion-4150/pods/var-expansion-aa622b67-8c44-40de-9754-0cea41941313/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 04/05/23 19:26:27.576 + Apr 5 19:26:27.579: INFO: ExecWithOptions {Command:[/bin/sh -c test -f /subpath_mount/test.log] Namespace:var-expansion-4150 PodName:var-expansion-aa622b67-8c44-40de-9754-0cea41941313 ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:26:27.580: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:26:27.580: INFO: ExecWithOptions: Clientset creation + Apr 5 19:26:27.580: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/var-expansion-4150/pods/var-expansion-aa622b67-8c44-40de-9754-0cea41941313/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 04/05/23 19:26:27.666 + Apr 5 19:26:28.180: INFO: Successfully updated pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" + STEP: waiting for annotated pod running 04/05/23 19:26:28.18 + Apr 5 19:26:28.180: INFO: Waiting up to 2m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" to be "running" + Apr 5 19:26:28.184: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313": Phase="Running", Reason="", readiness=true. Elapsed: 3.49218ms + Apr 5 19:26:28.184: INFO: Pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" satisfied condition "running" + STEP: deleting the pod gracefully 04/05/23 19:26:28.184 + Apr 5 19:26:28.184: INFO: Deleting pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" in namespace "var-expansion-4150" + Apr 5 19:26:28.194: INFO: Wait up to 5m0s for pod "var-expansion-aa622b67-8c44-40de-9754-0cea41941313" to be fully deleted + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:02.203: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-4150" for this suite. 04/05/23 19:27:02.209 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] Garbage collector + should delete pods created by rc when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:312 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:02.217 +Apr 5 19:27:02.217: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 19:27:02.219 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:02.235 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:02.239 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should delete pods created by rc when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:312 +STEP: create the rc 04/05/23 19:27:02.243 +STEP: delete the rc 04/05/23 19:27:07.253 +STEP: wait for all pods to be garbage collected 04/05/23 19:27:07.259 +STEP: Gathering metrics 04/05/23 19:27:12.268 +Apr 5 19:27:12.306: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 19:27:12.309: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 3.671855ms +Apr 5 19:27:12.310: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 19:27:12.310: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 19:27:12.384: 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/node/init/init.go:32 +Apr 5 19:27:12.384: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-1237" for this suite. 04/05/23 19:27:12.39 +------------------------------ +• [SLOW TEST] [10.180 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should delete pods created by rc when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:312 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:02.217 + Apr 5 19:27:02.217: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 19:27:02.219 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:02.235 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:02.239 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should delete pods created by rc when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:312 + STEP: create the rc 04/05/23 19:27:02.243 + STEP: delete the rc 04/05/23 19:27:07.253 + STEP: wait for all pods to be garbage collected 04/05/23 19:27:07.259 + STEP: Gathering metrics 04/05/23 19:27:12.268 + Apr 5 19:27:12.306: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 19:27:12.309: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 3.671855ms + Apr 5 19:27:12.310: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 19:27:12.310: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 19:27:12.384: 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/node/init/init.go:32 + Apr 5 19:27:12.384: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-1237" for this suite. 04/05/23 19:27:12.39 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:89 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:12.4 +Apr 5 19:27:12.400: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:27:12.401 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:12.416 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:12.419 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:89 +STEP: Creating configMap with name projected-configmap-test-volume-map-54994674-ce84-4867-b21c-ff0fe42045ce 04/05/23 19:27:12.422 +STEP: Creating a pod to test consume configMaps 04/05/23 19:27:12.426 +Apr 5 19:27:12.437: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4" in namespace "projected-8742" to be "Succeeded or Failed" +Apr 5 19:27:12.444: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 7.562842ms +Apr 5 19:27:14.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011846036s +Apr 5 19:27:16.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012370461s +Apr 5 19:27:18.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012493888s +Apr 5 19:27:20.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01202228s +STEP: Saw pod success 04/05/23 19:27:20.449 +Apr 5 19:27:20.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4" satisfied condition "Succeeded or Failed" +Apr 5 19:27:20.453: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 container agnhost-container: +STEP: delete the pod 04/05/23 19:27:20.463 +Apr 5 19:27:20.477: INFO: Waiting for pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 to disappear +Apr 5 19:27:20.480: INFO: Pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:20.480: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-8742" for this suite. 04/05/23 19:27:20.486 +------------------------------ +• [SLOW TEST] [8.093 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/common/storage/projected_configmap.go:89 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:12.4 + Apr 5 19:27:12.400: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:27:12.401 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:12.416 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:12.419 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:89 + STEP: Creating configMap with name projected-configmap-test-volume-map-54994674-ce84-4867-b21c-ff0fe42045ce 04/05/23 19:27:12.422 + STEP: Creating a pod to test consume configMaps 04/05/23 19:27:12.426 + Apr 5 19:27:12.437: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4" in namespace "projected-8742" to be "Succeeded or Failed" + Apr 5 19:27:12.444: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 7.562842ms + Apr 5 19:27:14.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011846036s + Apr 5 19:27:16.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012370461s + Apr 5 19:27:18.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012493888s + Apr 5 19:27:20.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01202228s + STEP: Saw pod success 04/05/23 19:27:20.449 + Apr 5 19:27:20.449: INFO: Pod "pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4" satisfied condition "Succeeded or Failed" + Apr 5 19:27:20.453: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 container agnhost-container: + STEP: delete the pod 04/05/23 19:27:20.463 + Apr 5 19:27:20.477: INFO: Waiting for pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 to disappear + Apr 5 19:27:20.480: INFO: Pod pod-projected-configmaps-e1f59c95-f3bc-472b-b094-fe10af237ec4 no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:20.480: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-8742" for this suite. 04/05/23 19:27:20.486 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Lease + lease API should be available [Conformance] + test/e2e/common/node/lease.go:72 +[BeforeEach] [sig-node] Lease + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:20.502 +Apr 5 19:27:20.502: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename lease-test 04/05/23 19:27:20.503 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:20.516 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:20.519 +[BeforeEach] [sig-node] Lease + test/e2e/framework/metrics/init/init.go:31 +[It] lease API should be available [Conformance] + test/e2e/common/node/lease.go:72 +[AfterEach] [sig-node] Lease + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:20.579: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Lease + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Lease + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Lease + tear down framework | framework.go:193 +STEP: Destroying namespace "lease-test-3331" for this suite. 04/05/23 19:27:20.584 +------------------------------ +• [0.089 seconds] +[sig-node] Lease +test/e2e/common/node/framework.go:23 + lease API should be available [Conformance] + test/e2e/common/node/lease.go:72 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Lease + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:20.502 + Apr 5 19:27:20.502: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename lease-test 04/05/23 19:27:20.503 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:20.516 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:20.519 + [BeforeEach] [sig-node] Lease + test/e2e/framework/metrics/init/init.go:31 + [It] lease API should be available [Conformance] + test/e2e/common/node/lease.go:72 + [AfterEach] [sig-node] Lease + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:20.579: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Lease + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Lease + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Lease + tear down framework | framework.go:193 + STEP: Destroying namespace "lease-test-3331" for this suite. 04/05/23 19:27:20.584 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should invoke init containers on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:177 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:20.593 +Apr 5 19:27:20.593: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename init-container 04/05/23 19:27:20.594 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:20.607 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:20.61 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 +[It] should invoke init containers on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:177 +STEP: creating the pod 04/05/23 19:27:20.614 +Apr 5 19:27:20.614: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:29.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "init-container-8530" for this suite. 04/05/23 19:27:29.317 +------------------------------ +• [SLOW TEST] [8.731 seconds] +[sig-node] InitContainer [NodeConformance] +test/e2e/common/node/framework.go:23 + should invoke init containers on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:177 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:20.593 + Apr 5 19:27:20.593: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename init-container 04/05/23 19:27:20.594 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:20.607 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:20.61 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 + [It] should invoke init containers on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:177 + STEP: creating the pod 04/05/23 19:27:20.614 + Apr 5 19:27:20.614: INFO: PodSpec: initContainers in spec.initContainers + [AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:29.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "init-container-8530" for this suite. 04/05/23 19:27:29.317 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should get and update a ReplicationController scale [Conformance] + test/e2e/apps/rc.go:402 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:29.326 +Apr 5 19:27:29.326: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 19:27:29.327 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:29.341 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:29.343 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should get and update a ReplicationController scale [Conformance] + test/e2e/apps/rc.go:402 +STEP: Creating ReplicationController "e2e-rc-9xqlj" 04/05/23 19:27:29.346 +Apr 5 19:27:29.353: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas +Apr 5 19:27:30.356: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas +Apr 5 19:27:30.359: INFO: Found 1 replicas for "e2e-rc-9xqlj" replication controller +STEP: Getting scale subresource for ReplicationController "e2e-rc-9xqlj" 04/05/23 19:27:30.359 +STEP: Updating a scale subresource 04/05/23 19:27:30.363 +STEP: Verifying replicas where modified for replication controller "e2e-rc-9xqlj" 04/05/23 19:27:30.37 +Apr 5 19:27:30.371: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas +Apr 5 19:27:31.373: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas +Apr 5 19:27:31.453: INFO: Found 2 replicas for "e2e-rc-9xqlj" replication controller +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:31.453: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-9319" for this suite. 04/05/23 19:27:31.459 +------------------------------ +• [2.139 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should get and update a ReplicationController scale [Conformance] + test/e2e/apps/rc.go:402 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:29.326 + Apr 5 19:27:29.326: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 19:27:29.327 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:29.341 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:29.343 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should get and update a ReplicationController scale [Conformance] + test/e2e/apps/rc.go:402 + STEP: Creating ReplicationController "e2e-rc-9xqlj" 04/05/23 19:27:29.346 + Apr 5 19:27:29.353: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas + Apr 5 19:27:30.356: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas + Apr 5 19:27:30.359: INFO: Found 1 replicas for "e2e-rc-9xqlj" replication controller + STEP: Getting scale subresource for ReplicationController "e2e-rc-9xqlj" 04/05/23 19:27:30.359 + STEP: Updating a scale subresource 04/05/23 19:27:30.363 + STEP: Verifying replicas where modified for replication controller "e2e-rc-9xqlj" 04/05/23 19:27:30.37 + Apr 5 19:27:30.371: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas + Apr 5 19:27:31.373: INFO: Get Replication Controller "e2e-rc-9xqlj" to confirm replicas + Apr 5 19:27:31.453: INFO: Found 2 replicas for "e2e-rc-9xqlj" replication controller + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:31.453: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-9319" for this suite. 04/05/23 19:27:31.459 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/configmap_volume.go:504 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:31.488 +Apr 5 19:27:31.488: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:27:31.489 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:31.507 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:31.509 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/configmap_volume.go:504 +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:31.551: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-1273" for this suite. 04/05/23 19:27:31.558 +------------------------------ +• [0.078 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/configmap_volume.go:504 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:31.488 + Apr 5 19:27:31.488: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:27:31.489 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:31.507 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:31.509 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/configmap_volume.go:504 + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:31.551: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-1273" for this suite. 04/05/23 19:27:31.558 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-network] Services + should serve a basic endpoint from pods [Conformance] + test/e2e/network/service.go:787 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:31.583 +Apr 5 19:27:31.583: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:27:31.585 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:31.601 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:31.605 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should serve a basic endpoint from pods [Conformance] + test/e2e/network/service.go:787 +STEP: creating service endpoint-test2 in namespace services-3429 04/05/23 19:27:31.608 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[] 04/05/23 19:27:31.63 +Apr 5 19:27:31.634: INFO: Failed go get Endpoints object: endpoints "endpoint-test2" not found +Apr 5 19:27:32.647: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[] +STEP: Creating pod pod1 in namespace services-3429 04/05/23 19:27:32.647 +Apr 5 19:27:32.657: INFO: Waiting up to 5m0s for pod "pod1" in namespace "services-3429" to be "running and ready" +Apr 5 19:27:32.666: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 8.181835ms +Apr 5 19:27:32.667: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:34.671: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013913243s +Apr 5 19:27:34.672: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:36.672: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013935811s +Apr 5 19:27:36.672: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:38.672: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.014848301s +Apr 5 19:27:38.672: INFO: The phase of Pod pod1 is Running (Ready = true) +Apr 5 19:27:38.673: INFO: Pod "pod1" satisfied condition "running and ready" +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod1:[80]] 04/05/23 19:27:38.677 +Apr 5 19:27:38.688: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod1:[80]] +STEP: Checking if the Service forwards traffic to pod1 04/05/23 19:27:38.688 +Apr 5 19:27:38.688: INFO: Creating new exec pod +Apr 5 19:27:38.695: INFO: Waiting up to 5m0s for pod "execpod2tjzw" in namespace "services-3429" to be "running" +Apr 5 19:27:38.702: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 6.902383ms +Apr 5 19:27:40.708: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013312261s +Apr 5 19:27:42.706: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01131025s +Apr 5 19:27:44.706: INFO: Pod "execpod2tjzw": Phase="Running", Reason="", readiness=true. Elapsed: 6.011144237s +Apr 5 19:27:44.706: INFO: Pod "execpod2tjzw" satisfied condition "running" +Apr 5 19:27:45.707: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' +Apr 5 19:27:45.897: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:45.897: INFO: stdout: "" +Apr 5 19:27:45.897: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' +Apr 5 19:27:46.086: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:46.086: INFO: stdout: "" +STEP: Creating pod pod2 in namespace services-3429 04/05/23 19:27:46.086 +Apr 5 19:27:46.092: INFO: Waiting up to 5m0s for pod "pod2" in namespace "services-3429" to be "running and ready" +Apr 5 19:27:46.095: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.984377ms +Apr 5 19:27:46.095: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:48.100: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007950288s +Apr 5 19:27:48.100: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:50.099: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007432093s +Apr 5 19:27:50.100: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:27:52.100: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.007735003s +Apr 5 19:27:52.100: INFO: The phase of Pod pod2 is Running (Ready = true) +Apr 5 19:27:52.100: INFO: Pod "pod2" satisfied condition "running and ready" +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod1:[80] pod2:[80]] 04/05/23 19:27:52.103 +Apr 5 19:27:52.116: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod1:[80] pod2:[80]] +STEP: Checking if the Service forwards traffic to pod1 and pod2 04/05/23 19:27:52.116 +Apr 5 19:27:53.117: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' +Apr 5 19:27:53.319: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:53.319: INFO: stdout: "" +Apr 5 19:27:53.320: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' +Apr 5 19:27:53.518: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:53.518: INFO: stdout: "" +STEP: Deleting pod pod1 in namespace services-3429 04/05/23 19:27:53.518 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod2:[80]] 04/05/23 19:27:53.531 +Apr 5 19:27:54.584: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod2:[80]] +STEP: Checking if the Service forwards traffic to pod2 04/05/23 19:27:54.585 +Apr 5 19:27:55.585: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' +Apr 5 19:27:55.752: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:55.752: INFO: stdout: "" +Apr 5 19:27:55.752: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' +Apr 5 19:27:55.927: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" +Apr 5 19:27:55.927: INFO: stdout: "" +STEP: Deleting pod pod2 in namespace services-3429 04/05/23 19:27:55.927 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[] 04/05/23 19:27:55.944 +Apr 5 19:27:55.956: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[] +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:27:55.984: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-3429" for this suite. 04/05/23 19:27:55.997 +------------------------------ +• [SLOW TEST] [24.421 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should serve a basic endpoint from pods [Conformance] + test/e2e/network/service.go:787 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:31.583 + Apr 5 19:27:31.583: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:27:31.585 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:31.601 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:31.605 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should serve a basic endpoint from pods [Conformance] + test/e2e/network/service.go:787 + STEP: creating service endpoint-test2 in namespace services-3429 04/05/23 19:27:31.608 + STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[] 04/05/23 19:27:31.63 + Apr 5 19:27:31.634: INFO: Failed go get Endpoints object: endpoints "endpoint-test2" not found + Apr 5 19:27:32.647: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[] + STEP: Creating pod pod1 in namespace services-3429 04/05/23 19:27:32.647 + Apr 5 19:27:32.657: INFO: Waiting up to 5m0s for pod "pod1" in namespace "services-3429" to be "running and ready" + Apr 5 19:27:32.666: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 8.181835ms + Apr 5 19:27:32.667: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:34.671: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013913243s + Apr 5 19:27:34.672: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:36.672: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013935811s + Apr 5 19:27:36.672: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:38.672: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.014848301s + Apr 5 19:27:38.672: INFO: The phase of Pod pod1 is Running (Ready = true) + Apr 5 19:27:38.673: INFO: Pod "pod1" satisfied condition "running and ready" + STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod1:[80]] 04/05/23 19:27:38.677 + Apr 5 19:27:38.688: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod1:[80]] + STEP: Checking if the Service forwards traffic to pod1 04/05/23 19:27:38.688 + Apr 5 19:27:38.688: INFO: Creating new exec pod + Apr 5 19:27:38.695: INFO: Waiting up to 5m0s for pod "execpod2tjzw" in namespace "services-3429" to be "running" + Apr 5 19:27:38.702: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 6.902383ms + Apr 5 19:27:40.708: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013312261s + Apr 5 19:27:42.706: INFO: Pod "execpod2tjzw": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01131025s + Apr 5 19:27:44.706: INFO: Pod "execpod2tjzw": Phase="Running", Reason="", readiness=true. Elapsed: 6.011144237s + Apr 5 19:27:44.706: INFO: Pod "execpod2tjzw" satisfied condition "running" + Apr 5 19:27:45.707: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' + Apr 5 19:27:45.897: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:45.897: INFO: stdout: "" + Apr 5 19:27:45.897: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' + Apr 5 19:27:46.086: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:46.086: INFO: stdout: "" + STEP: Creating pod pod2 in namespace services-3429 04/05/23 19:27:46.086 + Apr 5 19:27:46.092: INFO: Waiting up to 5m0s for pod "pod2" in namespace "services-3429" to be "running and ready" + Apr 5 19:27:46.095: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.984377ms + Apr 5 19:27:46.095: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:48.100: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007950288s + Apr 5 19:27:48.100: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:50.099: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007432093s + Apr 5 19:27:50.100: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:27:52.100: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.007735003s + Apr 5 19:27:52.100: INFO: The phase of Pod pod2 is Running (Ready = true) + Apr 5 19:27:52.100: INFO: Pod "pod2" satisfied condition "running and ready" + STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod1:[80] pod2:[80]] 04/05/23 19:27:52.103 + Apr 5 19:27:52.116: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod1:[80] pod2:[80]] + STEP: Checking if the Service forwards traffic to pod1 and pod2 04/05/23 19:27:52.116 + Apr 5 19:27:53.117: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' + Apr 5 19:27:53.319: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:53.319: INFO: stdout: "" + Apr 5 19:27:53.320: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' + Apr 5 19:27:53.518: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:53.518: INFO: stdout: "" + STEP: Deleting pod pod1 in namespace services-3429 04/05/23 19:27:53.518 + STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[pod2:[80]] 04/05/23 19:27:53.531 + Apr 5 19:27:54.584: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[pod2:[80]] + STEP: Checking if the Service forwards traffic to pod2 04/05/23 19:27:54.585 + Apr 5 19:27:55.585: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 endpoint-test2 80' + Apr 5 19:27:55.752: INFO: stderr: "+ nc -v -z -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:55.752: INFO: stdout: "" + Apr 5 19:27:55.752: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-3429 exec execpod2tjzw -- /bin/sh -x -c nc -v -z -w 2 10.139.212.129 80' + Apr 5 19:27:55.927: INFO: stderr: "+ nc -v -z -w 2 10.139.212.129 80\nConnection to 10.139.212.129 80 port [tcp/http] succeeded!\n" + Apr 5 19:27:55.927: INFO: stdout: "" + STEP: Deleting pod pod2 in namespace services-3429 04/05/23 19:27:55.927 + STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-3429 to expose endpoints map[] 04/05/23 19:27:55.944 + Apr 5 19:27:55.956: INFO: successfully validated that service endpoint-test2 in namespace services-3429 exposes endpoints map[] + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:27:55.984: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-3429" for this suite. 04/05/23 19:27:55.997 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl logs + should be able to retrieve and filter logs [Conformance] + test/e2e/kubectl/kubectl.go:1592 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:27:56.006 +Apr 5 19:27:56.006: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:27:56.007 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:56.025 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:56.029 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1572 +STEP: creating an pod 04/05/23 19:27:56.033 +Apr 5 19:27:56.033: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 run logs-generator --image=registry.k8s.io/e2e-test-images/agnhost:2.43 --restart=Never --pod-running-timeout=2m0s -- logs-generator --log-lines-total 100 --run-duration 20s' +Apr 5 19:27:56.195: INFO: stderr: "" +Apr 5 19:27:56.195: INFO: stdout: "pod/logs-generator created\n" +[It] should be able to retrieve and filter logs [Conformance] + test/e2e/kubectl/kubectl.go:1592 +STEP: Waiting for log generator to start. 04/05/23 19:27:56.195 +Apr 5 19:27:56.196: INFO: Waiting up to 5m0s for 1 pods to be running and ready, or succeeded: [logs-generator] +Apr 5 19:27:56.196: INFO: Waiting up to 5m0s for pod "logs-generator" in namespace "kubectl-295" to be "running and ready, or succeeded" +Apr 5 19:27:56.206: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 10.277459ms +Apr 5 19:27:56.206: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' +Apr 5 19:27:58.235: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.039125234s +Apr 5 19:27:58.235: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' +Apr 5 19:28:00.217: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 4.021924801s +Apr 5 19:28:00.218: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' +Apr 5 19:28:02.213: INFO: Pod "logs-generator": Phase="Running", Reason="", readiness=true. Elapsed: 6.017378339s +Apr 5 19:28:02.213: INFO: Pod "logs-generator" satisfied condition "running and ready, or succeeded" +Apr 5 19:28:02.213: INFO: Wanted all 1 pods to be running and ready, or succeeded. Result: true. Pods: [logs-generator] +STEP: checking for a matching strings 04/05/23 19:28:02.213 +Apr 5 19:28:02.214: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator' +Apr 5 19:28:02.347: INFO: stderr: "" +Apr 5 19:28:02.347: INFO: stdout: "I0405 19:28:00.101288 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/9rx2 566\nI0405 19:28:00.301483 1 logs_generator.go:76] 1 PUT /api/v1/namespaces/default/pods/stn 456\nI0405 19:28:00.502137 1 logs_generator.go:76] 2 PUT /api/v1/namespaces/default/pods/t7zp 306\nI0405 19:28:00.701450 1 logs_generator.go:76] 3 POST /api/v1/namespaces/ns/pods/l6g 578\nI0405 19:28:00.901796 1 logs_generator.go:76] 4 POST /api/v1/namespaces/ns/pods/rc9r 239\nI0405 19:28:01.102011 1 logs_generator.go:76] 5 PUT /api/v1/namespaces/kube-system/pods/5n4 281\nI0405 19:28:01.302523 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/9vvk 244\nI0405 19:28:01.501975 1 logs_generator.go:76] 7 GET /api/v1/namespaces/default/pods/c6l 354\nI0405 19:28:01.701734 1 logs_generator.go:76] 8 POST /api/v1/namespaces/ns/pods/wfp 573\nI0405 19:28:01.902105 1 logs_generator.go:76] 9 POST /api/v1/namespaces/kube-system/pods/b9fc 316\nI0405 19:28:02.101423 1 logs_generator.go:76] 10 PUT /api/v1/namespaces/default/pods/tk7 550\nI0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" +STEP: limiting log lines 04/05/23 19:28:02.347 +Apr 5 19:28:02.347: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --tail=1' +Apr 5 19:28:02.440: INFO: stderr: "" +Apr 5 19:28:02.440: INFO: stdout: "I0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" +Apr 5 19:28:02.440: INFO: got output "I0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" +STEP: limiting log bytes 04/05/23 19:28:02.441 +Apr 5 19:28:02.441: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --limit-bytes=1' +Apr 5 19:28:02.537: INFO: stderr: "" +Apr 5 19:28:02.537: INFO: stdout: "I" +Apr 5 19:28:02.537: INFO: got output "I" +STEP: exposing timestamps 04/05/23 19:28:02.537 +Apr 5 19:28:02.537: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --tail=1 --timestamps' +Apr 5 19:28:02.645: INFO: stderr: "" +Apr 5 19:28:02.646: INFO: stdout: "2023-04-05T19:28:02.502386708Z I0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\n" +Apr 5 19:28:02.646: INFO: got output "2023-04-05T19:28:02.502386708Z I0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\n" +STEP: restricting to a time range 04/05/23 19:28:02.646 +Apr 5 19:28:05.146: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --since=1s' +Apr 5 19:28:05.240: INFO: stderr: "" +Apr 5 19:28:05.240: INFO: stdout: "I0405 19:28:04.301487 1 logs_generator.go:76] 21 POST /api/v1/namespaces/ns/pods/h7kn 571\nI0405 19:28:04.501880 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/jnwr 221\nI0405 19:28:04.702309 1 logs_generator.go:76] 23 GET /api/v1/namespaces/default/pods/j48 319\nI0405 19:28:04.901653 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/p62h 563\nI0405 19:28:05.102018 1 logs_generator.go:76] 25 GET /api/v1/namespaces/ns/pods/bmrh 238\n" +Apr 5 19:28:05.240: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --since=24h' +Apr 5 19:28:05.338: INFO: stderr: "" +Apr 5 19:28:05.338: INFO: stdout: "I0405 19:28:00.101288 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/9rx2 566\nI0405 19:28:00.301483 1 logs_generator.go:76] 1 PUT /api/v1/namespaces/default/pods/stn 456\nI0405 19:28:00.502137 1 logs_generator.go:76] 2 PUT /api/v1/namespaces/default/pods/t7zp 306\nI0405 19:28:00.701450 1 logs_generator.go:76] 3 POST /api/v1/namespaces/ns/pods/l6g 578\nI0405 19:28:00.901796 1 logs_generator.go:76] 4 POST /api/v1/namespaces/ns/pods/rc9r 239\nI0405 19:28:01.102011 1 logs_generator.go:76] 5 PUT /api/v1/namespaces/kube-system/pods/5n4 281\nI0405 19:28:01.302523 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/9vvk 244\nI0405 19:28:01.501975 1 logs_generator.go:76] 7 GET /api/v1/namespaces/default/pods/c6l 354\nI0405 19:28:01.701734 1 logs_generator.go:76] 8 POST /api/v1/namespaces/ns/pods/wfp 573\nI0405 19:28:01.902105 1 logs_generator.go:76] 9 POST /api/v1/namespaces/kube-system/pods/b9fc 316\nI0405 19:28:02.101423 1 logs_generator.go:76] 10 PUT /api/v1/namespaces/default/pods/tk7 550\nI0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\nI0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\nI0405 19:28:02.701468 1 logs_generator.go:76] 13 PUT /api/v1/namespaces/ns/pods/w7s 264\nI0405 19:28:02.901792 1 logs_generator.go:76] 14 PUT /api/v1/namespaces/kube-system/pods/gk7p 259\nI0405 19:28:03.102182 1 logs_generator.go:76] 15 POST /api/v1/namespaces/kube-system/pods/gg9 542\nI0405 19:28:03.301434 1 logs_generator.go:76] 16 PUT /api/v1/namespaces/default/pods/t2xd 342\nI0405 19:28:03.501943 1 logs_generator.go:76] 17 GET /api/v1/namespaces/ns/pods/456 339\nI0405 19:28:03.702294 1 logs_generator.go:76] 18 PUT /api/v1/namespaces/default/pods/qj6 311\nI0405 19:28:03.901711 1 logs_generator.go:76] 19 GET /api/v1/namespaces/ns/pods/ccj 411\nI0405 19:28:04.102147 1 logs_generator.go:76] 20 POST /api/v1/namespaces/default/pods/2wbt 561\nI0405 19:28:04.301487 1 logs_generator.go:76] 21 POST /api/v1/namespaces/ns/pods/h7kn 571\nI0405 19:28:04.501880 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/jnwr 221\nI0405 19:28:04.702309 1 logs_generator.go:76] 23 GET /api/v1/namespaces/default/pods/j48 319\nI0405 19:28:04.901653 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/p62h 563\nI0405 19:28:05.102018 1 logs_generator.go:76] 25 GET /api/v1/namespaces/ns/pods/bmrh 238\nI0405 19:28:05.301360 1 logs_generator.go:76] 26 GET /api/v1/namespaces/ns/pods/8l2 460\n" +[AfterEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1577 +Apr 5 19:28:05.338: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 delete pod logs-generator' +Apr 5 19:28:06.440: INFO: stderr: "" +Apr 5 19:28:06.440: INFO: stdout: "pod \"logs-generator\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:06.441: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-295" for this suite. 04/05/23 19:28:06.446 +------------------------------ +• [SLOW TEST] [10.447 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl logs + test/e2e/kubectl/kubectl.go:1569 + should be able to retrieve and filter logs [Conformance] + test/e2e/kubectl/kubectl.go:1592 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:27:56.006 + Apr 5 19:27:56.006: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:27:56.007 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:27:56.025 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:27:56.029 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1572 + STEP: creating an pod 04/05/23 19:27:56.033 + Apr 5 19:27:56.033: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 run logs-generator --image=registry.k8s.io/e2e-test-images/agnhost:2.43 --restart=Never --pod-running-timeout=2m0s -- logs-generator --log-lines-total 100 --run-duration 20s' + Apr 5 19:27:56.195: INFO: stderr: "" + Apr 5 19:27:56.195: INFO: stdout: "pod/logs-generator created\n" + [It] should be able to retrieve and filter logs [Conformance] + test/e2e/kubectl/kubectl.go:1592 + STEP: Waiting for log generator to start. 04/05/23 19:27:56.195 + Apr 5 19:27:56.196: INFO: Waiting up to 5m0s for 1 pods to be running and ready, or succeeded: [logs-generator] + Apr 5 19:27:56.196: INFO: Waiting up to 5m0s for pod "logs-generator" in namespace "kubectl-295" to be "running and ready, or succeeded" + Apr 5 19:27:56.206: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 10.277459ms + Apr 5 19:27:56.206: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' + Apr 5 19:27:58.235: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.039125234s + Apr 5 19:27:58.235: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' + Apr 5 19:28:00.217: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 4.021924801s + Apr 5 19:28:00.218: INFO: Error evaluating pod condition running and ready, or succeeded: want pod 'logs-generator' on 'ttneyla26-md-0-8474989c68-rj4zb' to be 'Running' but was 'Pending' + Apr 5 19:28:02.213: INFO: Pod "logs-generator": Phase="Running", Reason="", readiness=true. Elapsed: 6.017378339s + Apr 5 19:28:02.213: INFO: Pod "logs-generator" satisfied condition "running and ready, or succeeded" + Apr 5 19:28:02.213: INFO: Wanted all 1 pods to be running and ready, or succeeded. Result: true. Pods: [logs-generator] + STEP: checking for a matching strings 04/05/23 19:28:02.213 + Apr 5 19:28:02.214: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator' + Apr 5 19:28:02.347: INFO: stderr: "" + Apr 5 19:28:02.347: INFO: stdout: "I0405 19:28:00.101288 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/9rx2 566\nI0405 19:28:00.301483 1 logs_generator.go:76] 1 PUT /api/v1/namespaces/default/pods/stn 456\nI0405 19:28:00.502137 1 logs_generator.go:76] 2 PUT /api/v1/namespaces/default/pods/t7zp 306\nI0405 19:28:00.701450 1 logs_generator.go:76] 3 POST /api/v1/namespaces/ns/pods/l6g 578\nI0405 19:28:00.901796 1 logs_generator.go:76] 4 POST /api/v1/namespaces/ns/pods/rc9r 239\nI0405 19:28:01.102011 1 logs_generator.go:76] 5 PUT /api/v1/namespaces/kube-system/pods/5n4 281\nI0405 19:28:01.302523 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/9vvk 244\nI0405 19:28:01.501975 1 logs_generator.go:76] 7 GET /api/v1/namespaces/default/pods/c6l 354\nI0405 19:28:01.701734 1 logs_generator.go:76] 8 POST /api/v1/namespaces/ns/pods/wfp 573\nI0405 19:28:01.902105 1 logs_generator.go:76] 9 POST /api/v1/namespaces/kube-system/pods/b9fc 316\nI0405 19:28:02.101423 1 logs_generator.go:76] 10 PUT /api/v1/namespaces/default/pods/tk7 550\nI0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" + STEP: limiting log lines 04/05/23 19:28:02.347 + Apr 5 19:28:02.347: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --tail=1' + Apr 5 19:28:02.440: INFO: stderr: "" + Apr 5 19:28:02.440: INFO: stdout: "I0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" + Apr 5 19:28:02.440: INFO: got output "I0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\n" + STEP: limiting log bytes 04/05/23 19:28:02.441 + Apr 5 19:28:02.441: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --limit-bytes=1' + Apr 5 19:28:02.537: INFO: stderr: "" + Apr 5 19:28:02.537: INFO: stdout: "I" + Apr 5 19:28:02.537: INFO: got output "I" + STEP: exposing timestamps 04/05/23 19:28:02.537 + Apr 5 19:28:02.537: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --tail=1 --timestamps' + Apr 5 19:28:02.645: INFO: stderr: "" + Apr 5 19:28:02.646: INFO: stdout: "2023-04-05T19:28:02.502386708Z I0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\n" + Apr 5 19:28:02.646: INFO: got output "2023-04-05T19:28:02.502386708Z I0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\n" + STEP: restricting to a time range 04/05/23 19:28:02.646 + Apr 5 19:28:05.146: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --since=1s' + Apr 5 19:28:05.240: INFO: stderr: "" + Apr 5 19:28:05.240: INFO: stdout: "I0405 19:28:04.301487 1 logs_generator.go:76] 21 POST /api/v1/namespaces/ns/pods/h7kn 571\nI0405 19:28:04.501880 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/jnwr 221\nI0405 19:28:04.702309 1 logs_generator.go:76] 23 GET /api/v1/namespaces/default/pods/j48 319\nI0405 19:28:04.901653 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/p62h 563\nI0405 19:28:05.102018 1 logs_generator.go:76] 25 GET /api/v1/namespaces/ns/pods/bmrh 238\n" + Apr 5 19:28:05.240: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 logs logs-generator logs-generator --since=24h' + Apr 5 19:28:05.338: INFO: stderr: "" + Apr 5 19:28:05.338: INFO: stdout: "I0405 19:28:00.101288 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/9rx2 566\nI0405 19:28:00.301483 1 logs_generator.go:76] 1 PUT /api/v1/namespaces/default/pods/stn 456\nI0405 19:28:00.502137 1 logs_generator.go:76] 2 PUT /api/v1/namespaces/default/pods/t7zp 306\nI0405 19:28:00.701450 1 logs_generator.go:76] 3 POST /api/v1/namespaces/ns/pods/l6g 578\nI0405 19:28:00.901796 1 logs_generator.go:76] 4 POST /api/v1/namespaces/ns/pods/rc9r 239\nI0405 19:28:01.102011 1 logs_generator.go:76] 5 PUT /api/v1/namespaces/kube-system/pods/5n4 281\nI0405 19:28:01.302523 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/9vvk 244\nI0405 19:28:01.501975 1 logs_generator.go:76] 7 GET /api/v1/namespaces/default/pods/c6l 354\nI0405 19:28:01.701734 1 logs_generator.go:76] 8 POST /api/v1/namespaces/ns/pods/wfp 573\nI0405 19:28:01.902105 1 logs_generator.go:76] 9 POST /api/v1/namespaces/kube-system/pods/b9fc 316\nI0405 19:28:02.101423 1 logs_generator.go:76] 10 PUT /api/v1/namespaces/default/pods/tk7 550\nI0405 19:28:02.301780 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/skc 572\nI0405 19:28:02.502172 1 logs_generator.go:76] 12 POST /api/v1/namespaces/kube-system/pods/f5k 315\nI0405 19:28:02.701468 1 logs_generator.go:76] 13 PUT /api/v1/namespaces/ns/pods/w7s 264\nI0405 19:28:02.901792 1 logs_generator.go:76] 14 PUT /api/v1/namespaces/kube-system/pods/gk7p 259\nI0405 19:28:03.102182 1 logs_generator.go:76] 15 POST /api/v1/namespaces/kube-system/pods/gg9 542\nI0405 19:28:03.301434 1 logs_generator.go:76] 16 PUT /api/v1/namespaces/default/pods/t2xd 342\nI0405 19:28:03.501943 1 logs_generator.go:76] 17 GET /api/v1/namespaces/ns/pods/456 339\nI0405 19:28:03.702294 1 logs_generator.go:76] 18 PUT /api/v1/namespaces/default/pods/qj6 311\nI0405 19:28:03.901711 1 logs_generator.go:76] 19 GET /api/v1/namespaces/ns/pods/ccj 411\nI0405 19:28:04.102147 1 logs_generator.go:76] 20 POST /api/v1/namespaces/default/pods/2wbt 561\nI0405 19:28:04.301487 1 logs_generator.go:76] 21 POST /api/v1/namespaces/ns/pods/h7kn 571\nI0405 19:28:04.501880 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/jnwr 221\nI0405 19:28:04.702309 1 logs_generator.go:76] 23 GET /api/v1/namespaces/default/pods/j48 319\nI0405 19:28:04.901653 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/p62h 563\nI0405 19:28:05.102018 1 logs_generator.go:76] 25 GET /api/v1/namespaces/ns/pods/bmrh 238\nI0405 19:28:05.301360 1 logs_generator.go:76] 26 GET /api/v1/namespaces/ns/pods/8l2 460\n" + [AfterEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1577 + Apr 5 19:28:05.338: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-295 delete pod logs-generator' + Apr 5 19:28:06.440: INFO: stderr: "" + Apr 5 19:28:06.440: INFO: stdout: "pod \"logs-generator\" deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:06.441: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-295" for this suite. 04/05/23 19:28:06.446 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should observe PodDisruptionBudget status updated [Conformance] + test/e2e/apps/disruption.go:141 +[BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:06.462 +Apr 5 19:28:06.463: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption 04/05/23 19:28:06.464 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:06.478 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:06.481 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 +[It] should observe PodDisruptionBudget status updated [Conformance] + test/e2e/apps/disruption.go:141 +STEP: Waiting for the pdb to be processed 04/05/23 19:28:06.491 +STEP: Waiting for all pods to be running 04/05/23 19:28:06.517 +Apr 5 19:28:06.524: INFO: running pods: 0 < 3 +Apr 5 19:28:08.529: INFO: running pods: 0 < 3 +Apr 5 19:28:10.529: INFO: running pods: 0 < 3 +Apr 5 19:28:12.529: INFO: running pods: 2 < 3 +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:14.533: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-1492" for this suite. 04/05/23 19:28:14.538 +------------------------------ +• [SLOW TEST] [8.082 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should observe PodDisruptionBudget status updated [Conformance] + test/e2e/apps/disruption.go:141 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:06.462 + Apr 5 19:28:06.463: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption 04/05/23 19:28:06.464 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:06.478 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:06.481 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 + [It] should observe PodDisruptionBudget status updated [Conformance] + test/e2e/apps/disruption.go:141 + STEP: Waiting for the pdb to be processed 04/05/23 19:28:06.491 + STEP: Waiting for all pods to be running 04/05/23 19:28:06.517 + Apr 5 19:28:06.524: INFO: running pods: 0 < 3 + Apr 5 19:28:08.529: INFO: running pods: 0 < 3 + Apr 5 19:28:10.529: INFO: running pods: 0 < 3 + Apr 5 19:28:12.529: INFO: running pods: 2 < 3 + [AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:14.533: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-1492" for this suite. 04/05/23 19:28:14.538 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[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/common/node/runtime.go:195 +[BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:14.547 +Apr 5 19:28:14.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-runtime 04/05/23 19:28:14.549 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:14.56 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:14.563 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 +[It] should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:195 +STEP: create the container 04/05/23 19:28:14.566 +STEP: wait for the container to reach Succeeded 04/05/23 19:28:14.574 +STEP: get the container status 04/05/23 19:28:21.609 +STEP: the container should be terminated 04/05/23 19:28:21.613 +STEP: the termination message should be set 04/05/23 19:28:21.613 +Apr 5 19:28:21.614: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- +STEP: delete the container 04/05/23 19:28:21.614 +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:21.628: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 +STEP: Destroying namespace "container-runtime-2401" for this suite. 04/05/23 19:28:21.634 +------------------------------ +• [SLOW TEST] [7.095 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:44 + on terminated container + test/e2e/common/node/runtime.go:137 + should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:195 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:14.547 + Apr 5 19:28:14.547: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-runtime 04/05/23 19:28:14.549 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:14.56 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:14.563 + [BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 + [It] should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:195 + STEP: create the container 04/05/23 19:28:14.566 + STEP: wait for the container to reach Succeeded 04/05/23 19:28:14.574 + STEP: get the container status 04/05/23 19:28:21.609 + STEP: the container should be terminated 04/05/23 19:28:21.613 + STEP: the termination message should be set 04/05/23 19:28:21.613 + Apr 5 19:28:21.614: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- + STEP: delete the container 04/05/23 19:28:21.614 + [AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:21.628: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 + STEP: Destroying namespace "container-runtime-2401" for this suite. 04/05/23 19:28:21.634 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:458 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:21.646 +Apr 5 19:28:21.646: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename init-container 04/05/23 19:28:21.647 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:21.66 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:21.662 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 +[It] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:458 +STEP: creating the pod 04/05/23 19:28:21.665 +Apr 5 19:28:21.666: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:29.528: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "init-container-9444" for this suite. 04/05/23 19:28:29.535 +------------------------------ +• [SLOW TEST] [7.897 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/common/node/init_container.go:458 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:21.646 + Apr 5 19:28:21.646: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename init-container 04/05/23 19:28:21.647 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:21.66 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:21.662 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 + [It] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/common/node/init_container.go:458 + STEP: creating the pod 04/05/23 19:28:21.665 + Apr 5 19:28:21.666: INFO: PodSpec: initContainers in spec.initContainers + [AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:29.528: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "init-container-9444" for this suite. 04/05/23 19:28:29.535 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:105 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:29.546 +Apr 5 19:28:29.546: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 19:28:29.547 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:29.562 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:29.565 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:105 +Apr 5 19:28:29.568: INFO: Creating replica set "test-rolling-update-controller" (going to be adopted) +Apr 5 19:28:29.576: INFO: Pod name sample-pod: Found 0 pods out of 1 +Apr 5 19:28:34.581: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 19:28:34.581 +Apr 5 19:28:34.582: INFO: Creating deployment "test-rolling-update-deployment" +Apr 5 19:28:34.587: INFO: Ensuring deployment "test-rolling-update-deployment" gets the next revision from the one the adopted replica set "test-rolling-update-controller" has +Apr 5 19:28:34.595: INFO: new replicaset for deployment "test-rolling-update-deployment" is yet to be created +Apr 5 19:28:36.603: INFO: Ensuring status for deployment "test-rolling-update-deployment" is the expected +Apr 5 19:28:36.606: 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(2023, time.April, 5, 19, 28, 34, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rolling-update-deployment-7549d9f46d\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:28:38.613: 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 +Apr 5 19:28:38.624: INFO: Deployment "test-rolling-update-deployment": +&Deployment{ObjectMeta:{test-rolling-update-deployment deployment-9466 56903ab9-2164-45b1-85d5-f2a5167283e0 110307 1 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod] map[deployment.kubernetes.io/revision:3546343826724305833] [] [] [{e2e.test Update apps/v1 2023-04-05 19:28:34 +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 2023-04-05 19:28:38 +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 registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc0062828c8 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:2023-04-05 19:28:34 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rolling-update-deployment-7549d9f46d" has successfully progressed.,LastUpdateTime:2023-04-05 19:28:38 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Apr 5 19:28:38.627: INFO: New ReplicaSet "test-rolling-update-deployment-7549d9f46d" of Deployment "test-rolling-update-deployment": +&ReplicaSet{ObjectMeta:{test-rolling-update-deployment-7549d9f46d deployment-9466 397126f9-1a46-4e79-a9bf-5b4c7f05efcf 110297 1 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] 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 56903ab9-2164-45b1-85d5-f2a5167283e0 0xc006282d97 0xc006282d98}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:28:34 +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\":\"56903ab9-2164-45b1-85d5-f2a5167283e0\"}":{}}},"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 2023-04-05 19:28:38 +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: 7549d9f46d,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc006282e48 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{},},} +Apr 5 19:28:38.627: INFO: All old ReplicaSets of Deployment "test-rolling-update-deployment": +Apr 5 19:28:38.627: INFO: &ReplicaSet{ObjectMeta:{test-rolling-update-controller deployment-9466 e023bfac-fe06-45d6-99e1-7ea48329b2a8 110306 2 2023-04-05 19:28:29 +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 56903ab9-2164-45b1-85d5-f2a5167283e0 0xc006282c67 0xc006282c68}] [] [{e2e.test Update apps/v1 2023-04-05 19:28:29 +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 2023-04-05 19:28:38 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"56903ab9-2164-45b1-85d5-f2a5167283e0\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2023-04-05 19:28:38 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc006282d28 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{},},} +Apr 5 19:28:38.631: INFO: Pod "test-rolling-update-deployment-7549d9f46d-5x7wd" is available: +&Pod{ObjectMeta:{test-rolling-update-deployment-7549d9f46d-5x7wd test-rolling-update-deployment-7549d9f46d- deployment-9466 dc10197b-6ed7-41a9-a3f3-acb108a1482e 110296 0 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] map[] [{apps/v1 ReplicaSet test-rolling-update-deployment-7549d9f46d 397126f9-1a46-4e79-a9bf-5b4c7f05efcf 0xc0062832b7 0xc0062832b8}] [] [{kube-controller-manager Update v1 2023-04-05 19:28:34 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"397126f9-1a46-4e79-a9bf-5b4c7f05efcf\"}":{}}},"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 2023-04-05 19:28:38 +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\":\"192.168.3.115\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-zddjs,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zddjs,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.115,StartTime:2023-04-05 19:28:34 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:28:38 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/agnhost:2.43,ImageID:registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e,ContainerID:containerd://30c96b3f1cba9c7b6f7760014b02c5f6cba01a05a34102010f1e6d273c1d8c73,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.115,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:38.631: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-9466" for this suite. 04/05/23 19:28:38.636 +------------------------------ +• [SLOW TEST] [9.099 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:105 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:29.546 + Apr 5 19:28:29.546: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 19:28:29.547 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:29.562 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:29.565 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/apps/deployment.go:105 + Apr 5 19:28:29.568: INFO: Creating replica set "test-rolling-update-controller" (going to be adopted) + Apr 5 19:28:29.576: INFO: Pod name sample-pod: Found 0 pods out of 1 + Apr 5 19:28:34.581: INFO: Pod name sample-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 19:28:34.581 + Apr 5 19:28:34.582: INFO: Creating deployment "test-rolling-update-deployment" + Apr 5 19:28:34.587: INFO: Ensuring deployment "test-rolling-update-deployment" gets the next revision from the one the adopted replica set "test-rolling-update-controller" has + Apr 5 19:28:34.595: INFO: new replicaset for deployment "test-rolling-update-deployment" is yet to be created + Apr 5 19:28:36.603: INFO: Ensuring status for deployment "test-rolling-update-deployment" is the expected + Apr 5 19:28:36.606: 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(2023, time.April, 5, 19, 28, 34, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 34, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rolling-update-deployment-7549d9f46d\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:28:38.613: 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 + Apr 5 19:28:38.624: INFO: Deployment "test-rolling-update-deployment": + &Deployment{ObjectMeta:{test-rolling-update-deployment deployment-9466 56903ab9-2164-45b1-85d5-f2a5167283e0 110307 1 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod] map[deployment.kubernetes.io/revision:3546343826724305833] [] [] [{e2e.test Update apps/v1 2023-04-05 19:28:34 +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 2023-04-05 19:28:38 +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 registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc0062828c8 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:2023-04-05 19:28:34 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rolling-update-deployment-7549d9f46d" has successfully progressed.,LastUpdateTime:2023-04-05 19:28:38 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + + Apr 5 19:28:38.627: INFO: New ReplicaSet "test-rolling-update-deployment-7549d9f46d" of Deployment "test-rolling-update-deployment": + &ReplicaSet{ObjectMeta:{test-rolling-update-deployment-7549d9f46d deployment-9466 397126f9-1a46-4e79-a9bf-5b4c7f05efcf 110297 1 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] 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 56903ab9-2164-45b1-85d5-f2a5167283e0 0xc006282d97 0xc006282d98}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:28:34 +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\":\"56903ab9-2164-45b1-85d5-f2a5167283e0\"}":{}}},"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 2023-04-05 19:28:38 +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: 7549d9f46d,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc006282e48 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{},},} + Apr 5 19:28:38.627: INFO: All old ReplicaSets of Deployment "test-rolling-update-deployment": + Apr 5 19:28:38.627: INFO: &ReplicaSet{ObjectMeta:{test-rolling-update-controller deployment-9466 e023bfac-fe06-45d6-99e1-7ea48329b2a8 110306 2 2023-04-05 19:28:29 +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 56903ab9-2164-45b1-85d5-f2a5167283e0 0xc006282c67 0xc006282c68}] [] [{e2e.test Update apps/v1 2023-04-05 19:28:29 +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 2023-04-05 19:28:38 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"56903ab9-2164-45b1-85d5-f2a5167283e0\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2023-04-05 19:28:38 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc006282d28 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{},},} + Apr 5 19:28:38.631: INFO: Pod "test-rolling-update-deployment-7549d9f46d-5x7wd" is available: + &Pod{ObjectMeta:{test-rolling-update-deployment-7549d9f46d-5x7wd test-rolling-update-deployment-7549d9f46d- deployment-9466 dc10197b-6ed7-41a9-a3f3-acb108a1482e 110296 0 2023-04-05 19:28:34 +0000 UTC map[name:sample-pod pod-template-hash:7549d9f46d] map[] [{apps/v1 ReplicaSet test-rolling-update-deployment-7549d9f46d 397126f9-1a46-4e79-a9bf-5b4c7f05efcf 0xc0062832b7 0xc0062832b8}] [] [{kube-controller-manager Update v1 2023-04-05 19:28:34 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"397126f9-1a46-4e79-a9bf-5b4c7f05efcf\"}":{}}},"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 2023-04-05 19:28:38 +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\":\"192.168.3.115\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-zddjs,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zddjs,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:38 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:28:34 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.115,StartTime:2023-04-05 19:28:34 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:28:38 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/agnhost:2.43,ImageID:registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e,ContainerID:containerd://30c96b3f1cba9c7b6f7760014b02c5f6cba01a05a34102010f1e6d273c1d8c73,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.115,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:38.631: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-9466" for this suite. 04/05/23 19:28:38.636 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl run pod + should create a pod from an image when restart is Never [Conformance] + test/e2e/kubectl/kubectl.go:1713 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:38.648 +Apr 5 19:28:38.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:28:38.649 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:38.666 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:38.669 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1700 +[It] should create a pod from an image when restart is Never [Conformance] + test/e2e/kubectl/kubectl.go:1713 +STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 19:28:38.674 +Apr 5 19:28:38.675: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8240 run e2e-test-httpd-pod --restart=Never --pod-running-timeout=2m0s --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4' +Apr 5 19:28:38.776: INFO: stderr: "" +Apr 5 19:28:38.776: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: verifying the pod e2e-test-httpd-pod was created 04/05/23 19:28:38.776 +[AfterEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1704 +Apr 5 19:28:38.779: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8240 delete pods e2e-test-httpd-pod' +Apr 5 19:28:44.615: INFO: stderr: "" +Apr 5 19:28:44.615: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:44.615: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-8240" for this suite. 04/05/23 19:28:44.622 +------------------------------ +• [SLOW TEST] [5.981 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl run pod + test/e2e/kubectl/kubectl.go:1697 + should create a pod from an image when restart is Never [Conformance] + test/e2e/kubectl/kubectl.go:1713 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:38.648 + Apr 5 19:28:38.648: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:28:38.649 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:38.666 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:38.669 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1700 + [It] should create a pod from an image when restart is Never [Conformance] + test/e2e/kubectl/kubectl.go:1713 + STEP: running the image registry.k8s.io/e2e-test-images/httpd:2.4.38-4 04/05/23 19:28:38.674 + Apr 5 19:28:38.675: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8240 run e2e-test-httpd-pod --restart=Never --pod-running-timeout=2m0s --image=registry.k8s.io/e2e-test-images/httpd:2.4.38-4' + Apr 5 19:28:38.776: INFO: stderr: "" + Apr 5 19:28:38.776: INFO: stdout: "pod/e2e-test-httpd-pod created\n" + STEP: verifying the pod e2e-test-httpd-pod was created 04/05/23 19:28:38.776 + [AfterEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1704 + Apr 5 19:28:38.779: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8240 delete pods e2e-test-httpd-pod' + Apr 5 19:28:44.615: INFO: stderr: "" + Apr 5 19:28:44.615: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:44.615: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-8240" for this suite. 04/05/23 19:28:44.622 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource with pruning [Conformance] + test/e2e/apimachinery/webhook.go:341 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:44.629 +Apr 5 19:28:44.629: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:28:44.631 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:44.654 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:44.658 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:28:44.674 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:28:45.365 +STEP: Deploying the webhook pod 04/05/23 19:28:45.374 +STEP: Wait for the deployment to be ready 04/05/23 19:28:45.389 +Apr 5 19:28:45.396: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:28:47.406: 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(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:28:49.413: 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(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:28:51.411 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:28:51.431 +Apr 5 19:28:52.431: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate custom resource with pruning [Conformance] + test/e2e/apimachinery/webhook.go:341 +Apr 5 19:28:52.436: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-7923-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 19:28:52.951 +STEP: Creating a custom resource that should be mutated by the webhook 04/05/23 19:28:52.969 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:28:55.552: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-7138" for this suite. 04/05/23 19:28:55.63 +STEP: Destroying namespace "webhook-7138-markers" for this suite. 04/05/23 19:28:55.645 +------------------------------ +• [SLOW TEST] [11.025 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource with pruning [Conformance] + test/e2e/apimachinery/webhook.go:341 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:44.629 + Apr 5 19:28:44.629: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:28:44.631 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:44.654 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:44.658 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:28:44.674 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:28:45.365 + STEP: Deploying the webhook pod 04/05/23 19:28:45.374 + STEP: Wait for the deployment to be ready 04/05/23 19:28:45.389 + Apr 5 19:28:45.396: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:28:47.406: 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(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:28:49.413: 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(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 28, 45, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:28:51.411 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:28:51.431 + Apr 5 19:28:52.431: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should mutate custom resource with pruning [Conformance] + test/e2e/apimachinery/webhook.go:341 + Apr 5 19:28:52.436: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Registering the mutating webhook for custom resource e2e-test-webhook-7923-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 19:28:52.951 + STEP: Creating a custom resource that should be mutated by the webhook 04/05/23 19:28:52.969 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:28:55.552: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-7138" for this suite. 04/05/23 19:28:55.63 + STEP: Destroying namespace "webhook-7138-markers" for this suite. 04/05/23 19:28:55.645 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:184 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:28:55.656 +Apr 5 19:28:55.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 19:28:55.659 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:55.675 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:55.678 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:184 +STEP: Creating pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 in namespace container-probe-3542 04/05/23 19:28:55.682 +Apr 5 19:28:55.692: INFO: Waiting up to 5m0s for pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688" in namespace "container-probe-3542" to be "not pending" +Apr 5 19:28:55.698: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Pending", Reason="", readiness=false. Elapsed: 6.449143ms +Apr 5 19:28:57.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011392549s +Apr 5 19:28:59.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Running", Reason="", readiness=true. Elapsed: 4.011326931s +Apr 5 19:28:59.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688" satisfied condition "not pending" +Apr 5 19:28:59.703: INFO: Started pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 in namespace container-probe-3542 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:28:59.703 +Apr 5 19:28:59.707: INFO: Initial restart count of pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 is 0 +STEP: deleting the pod 04/05/23 19:33:00.333 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 19:33:00.350: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-3542" for this suite. 04/05/23 19:33:00.365 +------------------------------ +• [SLOW TEST] [244.717 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/common/node/container_probe.go:184 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:28:55.656 + Apr 5 19:28:55.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 19:28:55.659 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:28:55.675 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:28:55.678 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:184 + STEP: Creating pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 in namespace container-probe-3542 04/05/23 19:28:55.682 + Apr 5 19:28:55.692: INFO: Waiting up to 5m0s for pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688" in namespace "container-probe-3542" to be "not pending" + Apr 5 19:28:55.698: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Pending", Reason="", readiness=false. Elapsed: 6.449143ms + Apr 5 19:28:57.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011392549s + Apr 5 19:28:59.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688": Phase="Running", Reason="", readiness=true. Elapsed: 4.011326931s + Apr 5 19:28:59.703: INFO: Pod "liveness-c856a604-9101-45ea-a721-1f48d3ddc688" satisfied condition "not pending" + Apr 5 19:28:59.703: INFO: Started pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 in namespace container-probe-3542 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 19:28:59.703 + Apr 5 19:28:59.707: INFO: Initial restart count of pod liveness-c856a604-9101-45ea-a721-1f48d3ddc688 is 0 + STEP: deleting the pod 04/05/23 19:33:00.333 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 19:33:00.350: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-3542" for this suite. 04/05/23 19:33:00.365 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-cli] Kubectl client Update Demo + should scale a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:352 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:33:00.374 +Apr 5 19:33:00.374: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 19:33:00.376 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:00.39 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:00.393 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:326 +[It] should scale a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:352 +STEP: creating a replication controller 04/05/23 19:33:00.396 +Apr 5 19:33:00.397: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 create -f -' +Apr 5 19:33:02.651: INFO: stderr: "" +Apr 5 19:33:02.651: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" +STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:02.651 +Apr 5 19:33:02.652: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:02.765: INFO: stderr: "" +Apr 5 19:33:02.765: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " +Apr 5 19:33:02.765: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:02.853: INFO: stderr: "" +Apr 5 19:33:02.853: INFO: stdout: "" +Apr 5 19:33:02.853: INFO: update-demo-nautilus-gzvsw is created but not running +Apr 5 19:33:07.856: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:07.960: INFO: stderr: "" +Apr 5 19:33:07.960: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " +Apr 5 19:33:07.960: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:08.079: INFO: stderr: "" +Apr 5 19:33:08.079: INFO: stdout: "" +Apr 5 19:33:08.079: INFO: update-demo-nautilus-gzvsw is created but not running +Apr 5 19:33:13.079: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:13.183: INFO: stderr: "" +Apr 5 19:33:13.183: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " +Apr 5 19:33:13.183: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:13.272: INFO: stderr: "" +Apr 5 19:33:13.273: INFO: stdout: "true" +Apr 5 19:33:13.273: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:13.368: INFO: stderr: "" +Apr 5 19:33:13.368: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:13.368: INFO: validating pod update-demo-nautilus-gzvsw +Apr 5 19:33:13.379: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:13.379: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:13.379: INFO: update-demo-nautilus-gzvsw is verified up and running +Apr 5 19:33:13.379: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-rkhxh -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:13.471: INFO: stderr: "" +Apr 5 19:33:13.471: INFO: stdout: "true" +Apr 5 19:33:13.471: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-rkhxh -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:13.565: INFO: stderr: "" +Apr 5 19:33:13.565: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:13.565: INFO: validating pod update-demo-nautilus-rkhxh +Apr 5 19:33:13.573: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:13.573: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:13.573: INFO: update-demo-nautilus-rkhxh is verified up and running +STEP: scaling down the replication controller 04/05/23 19:33:13.573 +Apr 5 19:33:13.579: INFO: scanned /root for discovery docs: +Apr 5 19:33:13.579: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 scale rc update-demo-nautilus --replicas=1 --timeout=5m' +Apr 5 19:33:14.711: INFO: stderr: "" +Apr 5 19:33:14.711: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" +STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:14.711 +Apr 5 19:33:14.711: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:14.829: INFO: stderr: "" +Apr 5 19:33:14.829: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " +STEP: Replicas for name=update-demo: expected=1 actual=2 04/05/23 19:33:14.829 +Apr 5 19:33:19.830: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:19.921: INFO: stderr: "" +Apr 5 19:33:19.921: INFO: stdout: "update-demo-nautilus-gzvsw " +Apr 5 19:33:19.922: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:20.018: INFO: stderr: "" +Apr 5 19:33:20.019: INFO: stdout: "true" +Apr 5 19:33:20.019: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:20.125: INFO: stderr: "" +Apr 5 19:33:20.125: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:20.125: INFO: validating pod update-demo-nautilus-gzvsw +Apr 5 19:33:20.130: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:20.130: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:20.130: INFO: update-demo-nautilus-gzvsw is verified up and running +STEP: scaling up the replication controller 04/05/23 19:33:20.13 +Apr 5 19:33:20.139: INFO: scanned /root for discovery docs: +Apr 5 19:33:20.139: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 scale rc update-demo-nautilus --replicas=2 --timeout=5m' +Apr 5 19:33:21.268: INFO: stderr: "" +Apr 5 19:33:21.268: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" +STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:21.268 +Apr 5 19:33:21.269: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:21.389: INFO: stderr: "" +Apr 5 19:33:21.389: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-zbc8d " +Apr 5 19:33:21.389: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:21.500: INFO: stderr: "" +Apr 5 19:33:21.501: INFO: stdout: "true" +Apr 5 19:33:21.501: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:21.592: INFO: stderr: "" +Apr 5 19:33:21.592: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:21.592: INFO: validating pod update-demo-nautilus-gzvsw +Apr 5 19:33:21.598: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:21.598: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:21.598: INFO: update-demo-nautilus-gzvsw is verified up and running +Apr 5 19:33:21.598: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:21.685: INFO: stderr: "" +Apr 5 19:33:21.685: INFO: stdout: "" +Apr 5 19:33:21.685: INFO: update-demo-nautilus-zbc8d is created but not running +Apr 5 19:33:26.687: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 19:33:26.784: INFO: stderr: "" +Apr 5 19:33:26.784: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-zbc8d " +Apr 5 19:33:26.784: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:26.888: INFO: stderr: "" +Apr 5 19:33:26.888: INFO: stdout: "true" +Apr 5 19:33:26.888: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:26.988: INFO: stderr: "" +Apr 5 19:33:26.988: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:26.988: INFO: validating pod update-demo-nautilus-gzvsw +Apr 5 19:33:26.994: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:26.994: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:26.994: INFO: update-demo-nautilus-gzvsw is verified up and running +Apr 5 19:33:26.994: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 19:33:27.084: INFO: stderr: "" +Apr 5 19:33:27.084: INFO: stdout: "true" +Apr 5 19:33:27.084: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 19:33:27.180: INFO: stderr: "" +Apr 5 19:33:27.180: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 19:33:27.180: INFO: validating pod update-demo-nautilus-zbc8d +Apr 5 19:33:27.189: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 19:33:27.189: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 19:33:27.189: INFO: update-demo-nautilus-zbc8d is verified up and running +STEP: using delete to clean up resources 04/05/23 19:33:27.189 +Apr 5 19:33:27.189: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 delete --grace-period=0 --force -f -' +Apr 5 19:33:27.284: 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" +Apr 5 19:33:27.284: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" +Apr 5 19:33:27.284: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get rc,svc -l name=update-demo --no-headers' +Apr 5 19:33:27.409: INFO: stderr: "No resources found in kubectl-8567 namespace.\n" +Apr 5 19:33:27.409: INFO: stdout: "" +Apr 5 19:33:27.409: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Apr 5 19:33:27.531: INFO: stderr: "" +Apr 5 19:33:27.531: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 19:33:27.531: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-8567" for this suite. 04/05/23 19:33:27.539 +------------------------------ +• [SLOW TEST] [27.171 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Update Demo + test/e2e/kubectl/kubectl.go:324 + should scale a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:352 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:33:00.374 + Apr 5 19:33:00.374: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 19:33:00.376 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:00.39 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:00.393 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:326 + [It] should scale a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:352 + STEP: creating a replication controller 04/05/23 19:33:00.396 + Apr 5 19:33:00.397: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 create -f -' + Apr 5 19:33:02.651: INFO: stderr: "" + Apr 5 19:33:02.651: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" + STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:02.651 + Apr 5 19:33:02.652: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:02.765: INFO: stderr: "" + Apr 5 19:33:02.765: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " + Apr 5 19:33:02.765: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:02.853: INFO: stderr: "" + Apr 5 19:33:02.853: INFO: stdout: "" + Apr 5 19:33:02.853: INFO: update-demo-nautilus-gzvsw is created but not running + Apr 5 19:33:07.856: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:07.960: INFO: stderr: "" + Apr 5 19:33:07.960: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " + Apr 5 19:33:07.960: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:08.079: INFO: stderr: "" + Apr 5 19:33:08.079: INFO: stdout: "" + Apr 5 19:33:08.079: INFO: update-demo-nautilus-gzvsw is created but not running + Apr 5 19:33:13.079: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:13.183: INFO: stderr: "" + Apr 5 19:33:13.183: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " + Apr 5 19:33:13.183: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:13.272: INFO: stderr: "" + Apr 5 19:33:13.273: INFO: stdout: "true" + Apr 5 19:33:13.273: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:13.368: INFO: stderr: "" + Apr 5 19:33:13.368: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:13.368: INFO: validating pod update-demo-nautilus-gzvsw + Apr 5 19:33:13.379: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:13.379: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:13.379: INFO: update-demo-nautilus-gzvsw is verified up and running + Apr 5 19:33:13.379: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-rkhxh -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:13.471: INFO: stderr: "" + Apr 5 19:33:13.471: INFO: stdout: "true" + Apr 5 19:33:13.471: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-rkhxh -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:13.565: INFO: stderr: "" + Apr 5 19:33:13.565: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:13.565: INFO: validating pod update-demo-nautilus-rkhxh + Apr 5 19:33:13.573: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:13.573: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:13.573: INFO: update-demo-nautilus-rkhxh is verified up and running + STEP: scaling down the replication controller 04/05/23 19:33:13.573 + Apr 5 19:33:13.579: INFO: scanned /root for discovery docs: + Apr 5 19:33:13.579: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 scale rc update-demo-nautilus --replicas=1 --timeout=5m' + Apr 5 19:33:14.711: INFO: stderr: "" + Apr 5 19:33:14.711: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" + STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:14.711 + Apr 5 19:33:14.711: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:14.829: INFO: stderr: "" + Apr 5 19:33:14.829: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-rkhxh " + STEP: Replicas for name=update-demo: expected=1 actual=2 04/05/23 19:33:14.829 + Apr 5 19:33:19.830: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:19.921: INFO: stderr: "" + Apr 5 19:33:19.921: INFO: stdout: "update-demo-nautilus-gzvsw " + Apr 5 19:33:19.922: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:20.018: INFO: stderr: "" + Apr 5 19:33:20.019: INFO: stdout: "true" + Apr 5 19:33:20.019: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:20.125: INFO: stderr: "" + Apr 5 19:33:20.125: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:20.125: INFO: validating pod update-demo-nautilus-gzvsw + Apr 5 19:33:20.130: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:20.130: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:20.130: INFO: update-demo-nautilus-gzvsw is verified up and running + STEP: scaling up the replication controller 04/05/23 19:33:20.13 + Apr 5 19:33:20.139: INFO: scanned /root for discovery docs: + Apr 5 19:33:20.139: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 scale rc update-demo-nautilus --replicas=2 --timeout=5m' + Apr 5 19:33:21.268: INFO: stderr: "" + Apr 5 19:33:21.268: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" + STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 19:33:21.268 + Apr 5 19:33:21.269: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:21.389: INFO: stderr: "" + Apr 5 19:33:21.389: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-zbc8d " + Apr 5 19:33:21.389: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:21.500: INFO: stderr: "" + Apr 5 19:33:21.501: INFO: stdout: "true" + Apr 5 19:33:21.501: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:21.592: INFO: stderr: "" + Apr 5 19:33:21.592: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:21.592: INFO: validating pod update-demo-nautilus-gzvsw + Apr 5 19:33:21.598: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:21.598: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:21.598: INFO: update-demo-nautilus-gzvsw is verified up and running + Apr 5 19:33:21.598: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:21.685: INFO: stderr: "" + Apr 5 19:33:21.685: INFO: stdout: "" + Apr 5 19:33:21.685: INFO: update-demo-nautilus-zbc8d is created but not running + Apr 5 19:33:26.687: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 19:33:26.784: INFO: stderr: "" + Apr 5 19:33:26.784: INFO: stdout: "update-demo-nautilus-gzvsw update-demo-nautilus-zbc8d " + Apr 5 19:33:26.784: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:26.888: INFO: stderr: "" + Apr 5 19:33:26.888: INFO: stdout: "true" + Apr 5 19:33:26.888: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-gzvsw -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:26.988: INFO: stderr: "" + Apr 5 19:33:26.988: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:26.988: INFO: validating pod update-demo-nautilus-gzvsw + Apr 5 19:33:26.994: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:26.994: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:26.994: INFO: update-demo-nautilus-gzvsw is verified up and running + Apr 5 19:33:26.994: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 19:33:27.084: INFO: stderr: "" + Apr 5 19:33:27.084: INFO: stdout: "true" + Apr 5 19:33:27.084: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods update-demo-nautilus-zbc8d -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 19:33:27.180: INFO: stderr: "" + Apr 5 19:33:27.180: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 19:33:27.180: INFO: validating pod update-demo-nautilus-zbc8d + Apr 5 19:33:27.189: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 19:33:27.189: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 19:33:27.189: INFO: update-demo-nautilus-zbc8d is verified up and running + STEP: using delete to clean up resources 04/05/23 19:33:27.189 + Apr 5 19:33:27.189: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 delete --grace-period=0 --force -f -' + Apr 5 19:33:27.284: 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" + Apr 5 19:33:27.284: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" + Apr 5 19:33:27.284: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get rc,svc -l name=update-demo --no-headers' + Apr 5 19:33:27.409: INFO: stderr: "No resources found in kubectl-8567 namespace.\n" + Apr 5 19:33:27.409: INFO: stdout: "" + Apr 5 19:33:27.409: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8567 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' + Apr 5 19:33:27.531: INFO: stderr: "" + Apr 5 19:33:27.531: INFO: stdout: "" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 19:33:27.531: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-8567" for this suite. 04/05/23 19:33:27.539 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-node] KubeletManagedEtcHosts + should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet_etc_hosts.go:63 +[BeforeEach] [sig-node] KubeletManagedEtcHosts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:33:27.546 +Apr 5 19:33:27.546: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename e2e-kubelet-etc-hosts 04/05/23 19:33:27.549 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:27.566 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:27.568 +[BeforeEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/metrics/init/init.go:31 +[It] should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet_etc_hosts.go:63 +STEP: Setting up the test 04/05/23 19:33:27.573 +STEP: Creating hostNetwork=false pod 04/05/23 19:33:27.573 +Apr 5 19:33:27.583: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "e2e-kubelet-etc-hosts-2708" to be "running and ready" +Apr 5 19:33:27.590: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.781936ms +Apr 5 19:33:27.590: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:33:29.596: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013032769s +Apr 5 19:33:29.596: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:33:31.594: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01135789s +Apr 5 19:33:31.594: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:33:33.595: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.011991433s +Apr 5 19:33:33.595: INFO: The phase of Pod test-pod is Running (Ready = true) +Apr 5 19:33:33.595: INFO: Pod "test-pod" satisfied condition "running and ready" +STEP: Creating hostNetwork=true pod 04/05/23 19:33:33.598 +Apr 5 19:33:33.605: INFO: Waiting up to 5m0s for pod "test-host-network-pod" in namespace "e2e-kubelet-etc-hosts-2708" to be "running and ready" +Apr 5 19:33:33.608: INFO: Pod "test-host-network-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.94018ms +Apr 5 19:33:33.608: INFO: The phase of Pod test-host-network-pod is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:33:35.613: INFO: Pod "test-host-network-pod": Phase="Running", Reason="", readiness=true. Elapsed: 2.007582866s +Apr 5 19:33:35.613: INFO: The phase of Pod test-host-network-pod is Running (Ready = true) +Apr 5 19:33:35.613: INFO: Pod "test-host-network-pod" satisfied condition "running and ready" +STEP: Running the test 04/05/23 19:33:35.616 +STEP: Verifying /etc/hosts of container is kubelet-managed for pod with hostNetwork=false 04/05/23 19:33:35.617 +Apr 5 19:33:35.617: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:35.617: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:35.618: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:35.618: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Apr 5 19:33:35.710: INFO: Exec stderr: "" +Apr 5 19:33:35.710: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:35.710: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:35.711: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:35.711: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Apr 5 19:33:35.790: INFO: Exec stderr: "" +Apr 5 19:33:35.790: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:35.791: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:35.792: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:35.792: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Apr 5 19:33:35.878: INFO: Exec stderr: "" +Apr 5 19:33:35.878: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:35.878: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:35.880: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:35.880: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Apr 5 19:33:35.977: INFO: Exec stderr: "" +STEP: Verifying /etc/hosts of container is not kubelet-managed since container specifies /etc/hosts mount 04/05/23 19:33:35.977 +Apr 5 19:33:35.977: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:35.977: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:35.978: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:35.978: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-3&container=busybox-3&stderr=true&stdout=true) +Apr 5 19:33:36.067: INFO: Exec stderr: "" +Apr 5 19:33:36.067: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:36.067: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:36.068: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:36.068: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-3&container=busybox-3&stderr=true&stdout=true) +Apr 5 19:33:36.151: INFO: Exec stderr: "" +STEP: Verifying /etc/hosts content of container is not kubelet-managed for pod with hostNetwork=true 04/05/23 19:33:36.152 +Apr 5 19:33:36.152: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:36.152: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:36.152: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:36.153: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Apr 5 19:33:36.247: INFO: Exec stderr: "" +Apr 5 19:33:36.248: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:36.248: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:36.249: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:36.249: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Apr 5 19:33:36.338: INFO: Exec stderr: "" +Apr 5 19:33:36.339: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:36.339: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:36.341: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:36.341: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Apr 5 19:33:36.443: INFO: Exec stderr: "" +Apr 5 19:33:36.444: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 19:33:36.444: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 19:33:36.445: INFO: ExecWithOptions: Clientset creation +Apr 5 19:33:36.445: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Apr 5 19:33:36.524: INFO: Exec stderr: "" +[AfterEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:33:36.525: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + tear down framework | framework.go:193 +STEP: Destroying namespace "e2e-kubelet-etc-hosts-2708" for this suite. 04/05/23 19:33:36.533 +------------------------------ +• [SLOW TEST] [8.993 seconds] +[sig-node] KubeletManagedEtcHosts +test/e2e/common/node/framework.go:23 + should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet_etc_hosts.go:63 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] KubeletManagedEtcHosts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:33:27.546 + Apr 5 19:33:27.546: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename e2e-kubelet-etc-hosts 04/05/23 19:33:27.549 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:27.566 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:27.568 + [BeforeEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/metrics/init/init.go:31 + [It] should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet_etc_hosts.go:63 + STEP: Setting up the test 04/05/23 19:33:27.573 + STEP: Creating hostNetwork=false pod 04/05/23 19:33:27.573 + Apr 5 19:33:27.583: INFO: Waiting up to 5m0s for pod "test-pod" in namespace "e2e-kubelet-etc-hosts-2708" to be "running and ready" + Apr 5 19:33:27.590: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.781936ms + Apr 5 19:33:27.590: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:33:29.596: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013032769s + Apr 5 19:33:29.596: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:33:31.594: INFO: Pod "test-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01135789s + Apr 5 19:33:31.594: INFO: The phase of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:33:33.595: INFO: Pod "test-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.011991433s + Apr 5 19:33:33.595: INFO: The phase of Pod test-pod is Running (Ready = true) + Apr 5 19:33:33.595: INFO: Pod "test-pod" satisfied condition "running and ready" + STEP: Creating hostNetwork=true pod 04/05/23 19:33:33.598 + Apr 5 19:33:33.605: INFO: Waiting up to 5m0s for pod "test-host-network-pod" in namespace "e2e-kubelet-etc-hosts-2708" to be "running and ready" + Apr 5 19:33:33.608: INFO: Pod "test-host-network-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.94018ms + Apr 5 19:33:33.608: INFO: The phase of Pod test-host-network-pod is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:33:35.613: INFO: Pod "test-host-network-pod": Phase="Running", Reason="", readiness=true. Elapsed: 2.007582866s + Apr 5 19:33:35.613: INFO: The phase of Pod test-host-network-pod is Running (Ready = true) + Apr 5 19:33:35.613: INFO: Pod "test-host-network-pod" satisfied condition "running and ready" + STEP: Running the test 04/05/23 19:33:35.616 + STEP: Verifying /etc/hosts of container is kubelet-managed for pod with hostNetwork=false 04/05/23 19:33:35.617 + Apr 5 19:33:35.617: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:35.617: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:35.618: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:35.618: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) + Apr 5 19:33:35.710: INFO: Exec stderr: "" + Apr 5 19:33:35.710: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:35.710: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:35.711: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:35.711: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) + Apr 5 19:33:35.790: INFO: Exec stderr: "" + Apr 5 19:33:35.790: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:35.791: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:35.792: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:35.792: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) + Apr 5 19:33:35.878: INFO: Exec stderr: "" + Apr 5 19:33:35.878: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:35.878: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:35.880: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:35.880: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) + Apr 5 19:33:35.977: INFO: Exec stderr: "" + STEP: Verifying /etc/hosts of container is not kubelet-managed since container specifies /etc/hosts mount 04/05/23 19:33:35.977 + Apr 5 19:33:35.977: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:35.977: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:35.978: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:35.978: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-3&container=busybox-3&stderr=true&stdout=true) + Apr 5 19:33:36.067: INFO: Exec stderr: "" + Apr 5 19:33:36.067: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:36.067: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:36.068: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:36.068: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-3&container=busybox-3&stderr=true&stdout=true) + Apr 5 19:33:36.151: INFO: Exec stderr: "" + STEP: Verifying /etc/hosts content of container is not kubelet-managed for pod with hostNetwork=true 04/05/23 19:33:36.152 + Apr 5 19:33:36.152: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:36.152: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:36.152: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:36.153: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) + Apr 5 19:33:36.247: INFO: Exec stderr: "" + Apr 5 19:33:36.248: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:36.248: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:36.249: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:36.249: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) + Apr 5 19:33:36.338: INFO: Exec stderr: "" + Apr 5 19:33:36.339: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:36.339: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:36.341: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:36.341: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) + Apr 5 19:33:36.443: INFO: Exec stderr: "" + Apr 5 19:33:36.444: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-2708 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 19:33:36.444: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 19:33:36.445: INFO: ExecWithOptions: Clientset creation + Apr 5 19:33:36.445: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-2708/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) + Apr 5 19:33:36.524: INFO: Exec stderr: "" + [AfterEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:33:36.525: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] KubeletManagedEtcHosts + tear down framework | framework.go:193 + STEP: Destroying namespace "e2e-kubelet-etc-hosts-2708" for this suite. 04/05/23 19:33:36.533 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should include webhook resources in discovery documents [Conformance] + test/e2e/apimachinery/webhook.go:117 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:33:36.544 +Apr 5 19:33:36.544: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:33:36.545 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:36.561 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:36.564 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:33:36.581 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:33:36.849 +STEP: Deploying the webhook pod 04/05/23 19:33:36.858 +STEP: Wait for the deployment to be ready 04/05/23 19:33:36.871 +Apr 5 19:33:36.879: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:33:38.889: 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(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:33:40.895: 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(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:33:42.897 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:33:42.938 +Apr 5 19:33:43.938: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should include webhook resources in discovery documents [Conformance] + test/e2e/apimachinery/webhook.go:117 +STEP: fetching the /apis discovery document 04/05/23 19:33:43.943 +STEP: finding the admissionregistration.k8s.io API group in the /apis discovery document 04/05/23 19:33:43.945 +STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis discovery document 04/05/23 19:33:43.945 +STEP: fetching the /apis/admissionregistration.k8s.io discovery document 04/05/23 19:33:43.945 +STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis/admissionregistration.k8s.io discovery document 04/05/23 19:33:43.947 +STEP: fetching the /apis/admissionregistration.k8s.io/v1 discovery document 04/05/23 19:33:43.947 +STEP: finding mutatingwebhookconfigurations and validatingwebhookconfigurations resources in the /apis/admissionregistration.k8s.io/v1 discovery document 04/05/23 19:33:43.948 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:33:43.949: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-9608" for this suite. 04/05/23 19:33:44.002 +STEP: Destroying namespace "webhook-9608-markers" for this suite. 04/05/23 19:33:44.012 +------------------------------ +• [SLOW TEST] [7.477 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should include webhook resources in discovery documents [Conformance] + test/e2e/apimachinery/webhook.go:117 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:33:36.544 + Apr 5 19:33:36.544: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:33:36.545 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:36.561 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:36.564 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:33:36.581 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:33:36.849 + STEP: Deploying the webhook pod 04/05/23 19:33:36.858 + STEP: Wait for the deployment to be ready 04/05/23 19:33:36.871 + Apr 5 19:33:36.879: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:33:38.889: 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(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:33:40.895: 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(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 33, 36, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:33:42.897 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:33:42.938 + Apr 5 19:33:43.938: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] should include webhook resources in discovery documents [Conformance] + test/e2e/apimachinery/webhook.go:117 + STEP: fetching the /apis discovery document 04/05/23 19:33:43.943 + STEP: finding the admissionregistration.k8s.io API group in the /apis discovery document 04/05/23 19:33:43.945 + STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis discovery document 04/05/23 19:33:43.945 + STEP: fetching the /apis/admissionregistration.k8s.io discovery document 04/05/23 19:33:43.945 + STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis/admissionregistration.k8s.io discovery document 04/05/23 19:33:43.947 + STEP: fetching the /apis/admissionregistration.k8s.io/v1 discovery document 04/05/23 19:33:43.947 + STEP: finding mutatingwebhookconfigurations and validatingwebhookconfigurations resources in the /apis/admissionregistration.k8s.io/v1 discovery document 04/05/23 19:33:43.948 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:33:43.949: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-9608" for this suite. 04/05/23 19:33:44.002 + STEP: Destroying namespace "webhook-9608-markers" for this suite. 04/05/23 19:33:44.012 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:84 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:33:44.03 +Apr 5 19:33:44.030: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:33:44.032 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:44.051 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:44.054 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:84 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:33:44.058 +Apr 5 19:33:44.068: INFO: Waiting up to 5m0s for pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d" in namespace "downward-api-5086" to be "Succeeded or Failed" +Apr 5 19:33:44.071: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.991802ms +Apr 5 19:33:46.077: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00896412s +Apr 5 19:33:48.077: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008326507s +Apr 5 19:33:50.076: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007372764s +Apr 5 19:33:52.078: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009281061s +STEP: Saw pod success 04/05/23 19:33:52.078 +Apr 5 19:33:52.078: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d" satisfied condition "Succeeded or Failed" +Apr 5 19:33:52.082: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d container client-container: +STEP: delete the pod 04/05/23 19:33:52.099 +Apr 5 19:33:52.112: INFO: Waiting for pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d to disappear +Apr 5 19:33:52.115: INFO: Pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 19:33:52.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-5086" for this suite. 04/05/23 19:33:52.124 +------------------------------ +• [SLOW TEST] [8.102 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:84 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:33:44.03 + Apr 5 19:33:44.030: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:33:44.032 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:44.051 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:44.054 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:84 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:33:44.058 + Apr 5 19:33:44.068: INFO: Waiting up to 5m0s for pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d" in namespace "downward-api-5086" to be "Succeeded or Failed" + Apr 5 19:33:44.071: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.991802ms + Apr 5 19:33:46.077: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00896412s + Apr 5 19:33:48.077: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008326507s + Apr 5 19:33:50.076: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007372764s + Apr 5 19:33:52.078: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009281061s + STEP: Saw pod success 04/05/23 19:33:52.078 + Apr 5 19:33:52.078: INFO: Pod "downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d" satisfied condition "Succeeded or Failed" + Apr 5 19:33:52.082: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d container client-container: + STEP: delete the pod 04/05/23 19:33:52.099 + Apr 5 19:33:52.112: INFO: Waiting for pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d to disappear + Apr 5 19:33:52.115: INFO: Pod downwardapi-volume-ddfe503c-f6a3-48a5-9b91-f13a8442941d no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 19:33:52.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-5086" for this suite. 04/05/23 19:33:52.124 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/apimachinery/resource_quota.go:326 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:33:52.132 +Apr 5 19:33:52.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:33:52.133 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:52.148 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:52.151 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/apimachinery/resource_quota.go:326 +STEP: Counting existing ResourceQuota 04/05/23 19:34:09.158 +STEP: Creating a ResourceQuota 04/05/23 19:34:14.162 +STEP: Ensuring resource quota status is calculated 04/05/23 19:34:14.168 +STEP: Creating a ConfigMap 04/05/23 19:34:16.173 +STEP: Ensuring resource quota status captures configMap creation 04/05/23 19:34:16.187 +STEP: Deleting a ConfigMap 04/05/23 19:34:18.192 +STEP: Ensuring resource quota status released usage 04/05/23 19:34:18.197 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:34:20.201: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-4513" for this suite. 04/05/23 19:34:20.207 +------------------------------ +• [SLOW TEST] [28.082 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/apimachinery/resource_quota.go:326 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:33:52.132 + Apr 5 19:33:52.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:33:52.133 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:33:52.148 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:33:52.151 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/apimachinery/resource_quota.go:326 + STEP: Counting existing ResourceQuota 04/05/23 19:34:09.158 + STEP: Creating a ResourceQuota 04/05/23 19:34:14.162 + STEP: Ensuring resource quota status is calculated 04/05/23 19:34:14.168 + STEP: Creating a ConfigMap 04/05/23 19:34:16.173 + STEP: Ensuring resource quota status captures configMap creation 04/05/23 19:34:16.187 + STEP: Deleting a ConfigMap 04/05/23 19:34:18.192 + STEP: Ensuring resource quota status released usage 04/05/23 19:34:18.197 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:34:20.201: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-4513" for this suite. 04/05/23 19:34:20.207 + << End Captured GinkgoWriter Output +------------------------------ +[sig-apps] Job + should manage the lifecycle of a job [Conformance] + test/e2e/apps/job.go:703 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:34:20.216 +Apr 5 19:34:20.217: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 19:34:20.218 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:20.234 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:20.237 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should manage the lifecycle of a job [Conformance] + test/e2e/apps/job.go:703 +STEP: Creating a suspended job 04/05/23 19:34:20.242 +STEP: Patching the Job 04/05/23 19:34:20.248 +STEP: Watching for Job to be patched 04/05/23 19:34:20.259 +Apr 5 19:34:20.260: INFO: Event ADDED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking:] +Apr 5 19:34:20.261: INFO: Event MODIFIED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking:] +STEP: Updating the job 04/05/23 19:34:20.261 +STEP: Watching for Job to be updated 04/05/23 19:34:20.296 +Apr 5 19:34:20.298: INFO: Event MODIFIED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:20.298: INFO: Found Job annotations: map[string]string{"batch.kubernetes.io/job-tracking":"", "updated":"true"} +STEP: Listing all Jobs with LabelSelector 04/05/23 19:34:20.298 +Apr 5 19:34:20.301: INFO: Job: e2e-hf8dq as labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] +STEP: Waiting for job to complete 04/05/23 19:34:20.301 +STEP: Delete a job collection with a labelselector 04/05/23 19:34:38.307 +STEP: Watching for Job to be deleted 04/05/23 19:34:38.316 +Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +Apr 5 19:34:38.319: INFO: Event DELETED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] +STEP: Relist jobs to confirm deletion 04/05/23 19:34:38.319 +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 19:34:38.348: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-2127" for this suite. 04/05/23 19:34:38.355 +------------------------------ +• [SLOW TEST] [18.153 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should manage the lifecycle of a job [Conformance] + test/e2e/apps/job.go:703 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:34:20.216 + Apr 5 19:34:20.217: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 19:34:20.218 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:20.234 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:20.237 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should manage the lifecycle of a job [Conformance] + test/e2e/apps/job.go:703 + STEP: Creating a suspended job 04/05/23 19:34:20.242 + STEP: Patching the Job 04/05/23 19:34:20.248 + STEP: Watching for Job to be patched 04/05/23 19:34:20.259 + Apr 5 19:34:20.260: INFO: Event ADDED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking:] + Apr 5 19:34:20.261: INFO: Event MODIFIED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking:] + STEP: Updating the job 04/05/23 19:34:20.261 + STEP: Watching for Job to be updated 04/05/23 19:34:20.296 + Apr 5 19:34:20.298: INFO: Event MODIFIED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:20.298: INFO: Found Job annotations: map[string]string{"batch.kubernetes.io/job-tracking":"", "updated":"true"} + STEP: Listing all Jobs with LabelSelector 04/05/23 19:34:20.298 + Apr 5 19:34:20.301: INFO: Job: e2e-hf8dq as labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] + STEP: Waiting for job to complete 04/05/23 19:34:20.301 + STEP: Delete a job collection with a labelselector 04/05/23 19:34:38.307 + STEP: Watching for Job to be deleted 04/05/23 19:34:38.316 + Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.318: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.319: INFO: Event MODIFIED observed for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + Apr 5 19:34:38.319: INFO: Event DELETED found for Job e2e-hf8dq in namespace job-2127 with labels: map[e2e-hf8dq:patched e2e-job-label:e2e-hf8dq] and annotations: map[batch.kubernetes.io/job-tracking: updated:true] + STEP: Relist jobs to confirm deletion 04/05/23 19:34:38.319 + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 19:34:38.348: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-2127" for this suite. 04/05/23 19:34:38.355 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] PodTemplates + should run the lifecycle of PodTemplates [Conformance] + test/e2e/common/node/podtemplates.go:53 +[BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:34:38.373 +Apr 5 19:34:38.373: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename podtemplate 04/05/23 19:34:38.375 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:38.392 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:38.395 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 +[It] should run the lifecycle of PodTemplates [Conformance] + test/e2e/common/node/podtemplates.go:53 +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 +Apr 5 19:34:38.433: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 +STEP: Destroying namespace "podtemplate-1369" for this suite. 04/05/23 19:34:38.438 +------------------------------ +• [0.072 seconds] +[sig-node] PodTemplates +test/e2e/common/node/framework.go:23 + should run the lifecycle of PodTemplates [Conformance] + test/e2e/common/node/podtemplates.go:53 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:34:38.373 + Apr 5 19:34:38.373: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename podtemplate 04/05/23 19:34:38.375 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:38.392 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:38.395 + [BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 + [It] should run the lifecycle of PodTemplates [Conformance] + test/e2e/common/node/podtemplates.go:53 + [AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 + Apr 5 19:34:38.433: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 + STEP: Destroying namespace "podtemplate-1369" for this suite. 04/05/23 19:34:38.438 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:205 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:34:38.449 +Apr 5 19:34:38.449: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:34:38.45 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:38.467 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:38.471 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:205 +STEP: Creating secret with name s-test-opt-del-014cadfc-054f-43c4-8ba5-1886ce9159af 04/05/23 19:34:38.479 +STEP: Creating secret with name s-test-opt-upd-f73dfe31-1343-4470-a01f-e93b00a895f9 04/05/23 19:34:38.483 +STEP: Creating the pod 04/05/23 19:34:38.488 +Apr 5 19:34:38.498: INFO: Waiting up to 5m0s for pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b" in namespace "secrets-3053" to be "running and ready" +Apr 5 19:34:38.502: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 3.469446ms +Apr 5 19:34:38.502: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:34:40.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008991916s +Apr 5 19:34:40.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:34:42.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008563893s +Apr 5 19:34:42.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:34:44.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Running", Reason="", readiness=true. Elapsed: 6.008432988s +Apr 5 19:34:44.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Running (Ready = true) +Apr 5 19:34:44.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b" satisfied condition "running and ready" +STEP: Deleting secret s-test-opt-del-014cadfc-054f-43c4-8ba5-1886ce9159af 04/05/23 19:34:44.529 +STEP: Updating secret s-test-opt-upd-f73dfe31-1343-4470-a01f-e93b00a895f9 04/05/23 19:34:44.535 +STEP: Creating secret with name s-test-opt-create-5297007d-b7f4-47d7-b614-a151e8d82dd1 04/05/23 19:34:44.54 +STEP: waiting to observe update in volume 04/05/23 19:34:44.545 +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:34:46.575: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-3053" for this suite. 04/05/23 19:34:46.582 +------------------------------ +• [SLOW TEST] [8.140 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:205 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:34:38.449 + Apr 5 19:34:38.449: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:34:38.45 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:38.467 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:38.471 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:205 + STEP: Creating secret with name s-test-opt-del-014cadfc-054f-43c4-8ba5-1886ce9159af 04/05/23 19:34:38.479 + STEP: Creating secret with name s-test-opt-upd-f73dfe31-1343-4470-a01f-e93b00a895f9 04/05/23 19:34:38.483 + STEP: Creating the pod 04/05/23 19:34:38.488 + Apr 5 19:34:38.498: INFO: Waiting up to 5m0s for pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b" in namespace "secrets-3053" to be "running and ready" + Apr 5 19:34:38.502: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 3.469446ms + Apr 5 19:34:38.502: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:34:40.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008991916s + Apr 5 19:34:40.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:34:42.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008563893s + Apr 5 19:34:42.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:34:44.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b": Phase="Running", Reason="", readiness=true. Elapsed: 6.008432988s + Apr 5 19:34:44.507: INFO: The phase of Pod pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b is Running (Ready = true) + Apr 5 19:34:44.507: INFO: Pod "pod-secrets-ae9a25fd-d0a7-41b1-87c1-19e7e92fc99b" satisfied condition "running and ready" + STEP: Deleting secret s-test-opt-del-014cadfc-054f-43c4-8ba5-1886ce9159af 04/05/23 19:34:44.529 + STEP: Updating secret s-test-opt-upd-f73dfe31-1343-4470-a01f-e93b00a895f9 04/05/23 19:34:44.535 + STEP: Creating secret with name s-test-opt-create-5297007d-b7f4-47d7-b614-a151e8d82dd1 04/05/23 19:34:44.54 + STEP: waiting to observe update in volume 04/05/23 19:34:44.545 + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:34:46.575: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-3053" for this suite. 04/05/23 19:34:46.582 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir wrapper volumes + should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/storage/empty_dir_wrapper.go:189 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:34:46.594 +Apr 5 19:34:46.594: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir-wrapper 04/05/23 19:34:46.595 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:46.611 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:46.614 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/storage/empty_dir_wrapper.go:189 +STEP: Creating 50 configmaps 04/05/23 19:34:46.617 +STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:34:46.854 +Apr 5 19:34:46.965: INFO: Pod name wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a: Found 3 pods out of 5 +Apr 5 19:34:51.974: INFO: Pod name wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a: Found 5 pods out of 5 +STEP: Ensuring each pod is running 04/05/23 19:34:51.974 +Apr 5 19:34:51.975: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:34:51.979: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 4.400061ms +Apr 5 19:34:53.989: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014613821s +Apr 5 19:34:55.986: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011330056s +Apr 5 19:34:57.984: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009717159s +Apr 5 19:34:59.987: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 8.012561068s +Apr 5 19:35:01.984: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009386881s +Apr 5 19:35:03.987: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 12.012657517s +Apr 5 19:35:05.986: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011269203s +Apr 5 19:35:07.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009929396s +Apr 5 19:35:09.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Running", Reason="", readiness=true. Elapsed: 18.010819356s +Apr 5 19:35:09.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz" satisfied condition "running" +Apr 5 19:35:09.985: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:09.991: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66": Phase="Pending", Reason="", readiness=false. Elapsed: 4.995101ms +Apr 5 19:35:11.997: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66": Phase="Running", Reason="", readiness=true. Elapsed: 2.011081975s +Apr 5 19:35:11.997: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66" satisfied condition "running" +Apr 5 19:35:11.997: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:12.001: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv": Phase="Running", Reason="", readiness=true. Elapsed: 4.095553ms +Apr 5 19:35:12.001: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv" satisfied condition "running" +Apr 5 19:35:12.001: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:12.004: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n": Phase="Running", Reason="", readiness=true. Elapsed: 3.421103ms +Apr 5 19:35:12.004: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n" satisfied condition "running" +Apr 5 19:35:12.004: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:12.008: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6": Phase="Running", Reason="", readiness=true. Elapsed: 3.928477ms +Apr 5 19:35:12.008: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6" satisfied condition "running" +STEP: deleting ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:35:12.008 +Apr 5 19:35:12.071: INFO: Deleting ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a took: 8.933291ms +Apr 5 19:35:12.173: INFO: Terminating ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a pods took: 101.452335ms +STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:35:14.68 +Apr 5 19:35:14.695: INFO: Pod name wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7: Found 0 pods out of 5 +Apr 5 19:35:19.708: INFO: Pod name wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7: Found 5 pods out of 5 +STEP: Ensuring each pod is running 04/05/23 19:35:19.708 +Apr 5 19:35:19.709: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:19.713: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.090976ms +Apr 5 19:35:21.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010517864s +Apr 5 19:35:23.718: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009340172s +Apr 5 19:35:25.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00987441s +Apr 5 19:35:27.975: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 8.265929005s +Apr 5 19:35:30.315: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 10.605887726s +Apr 5 19:35:32.208: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 12.499358474s +Apr 5 19:35:33.750: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 14.041135701s +Apr 5 19:35:35.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009906373s +Apr 5 19:35:37.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Running", Reason="", readiness=true. Elapsed: 18.009824527s +Apr 5 19:35:37.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc" satisfied condition "running" +Apr 5 19:35:37.719: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:37.723: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq": Phase="Running", Reason="", readiness=true. Elapsed: 4.62824ms +Apr 5 19:35:37.723: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq" satisfied condition "running" +Apr 5 19:35:37.723: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:37.727: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9": Phase="Running", Reason="", readiness=true. Elapsed: 3.449582ms +Apr 5 19:35:37.727: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9" satisfied condition "running" +Apr 5 19:35:37.727: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:37.731: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr": Phase="Running", Reason="", readiness=true. Elapsed: 3.865465ms +Apr 5 19:35:37.731: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr" satisfied condition "running" +Apr 5 19:35:37.731: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:37.735: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg": Phase="Pending", Reason="", readiness=false. Elapsed: 4.59112ms +Apr 5 19:35:39.741: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg": Phase="Running", Reason="", readiness=true. Elapsed: 2.009952947s +Apr 5 19:35:39.741: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg" satisfied condition "running" +STEP: deleting ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:35:39.741 +Apr 5 19:35:39.805: INFO: Deleting ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 took: 8.681977ms +Apr 5 19:35:39.906: INFO: Terminating ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 pods took: 100.414162ms +STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:35:42.915 +Apr 5 19:35:42.934: INFO: Pod name wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd: Found 0 pods out of 5 +Apr 5 19:35:47.946: INFO: Pod name wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd: Found 5 pods out of 5 +STEP: Ensuring each pod is running 04/05/23 19:35:47.947 +Apr 5 19:35:47.947: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:35:47.950: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.655986ms +Apr 5 19:35:49.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010241065s +Apr 5 19:35:51.955: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008308907s +Apr 5 19:35:53.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009144752s +Apr 5 19:35:55.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 8.010140949s +Apr 5 19:35:57.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010317835s +Apr 5 19:35:59.955: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 12.008621345s +Apr 5 19:36:01.958: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 14.010847614s +Apr 5 19:36:03.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Running", Reason="", readiness=true. Elapsed: 16.009608641s +Apr 5 19:36:03.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6" satisfied condition "running" +Apr 5 19:36:03.956: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:36:03.961: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt": Phase="Pending", Reason="", readiness=false. Elapsed: 4.537289ms +Apr 5 19:36:05.966: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt": Phase="Running", Reason="", readiness=true. Elapsed: 2.009376078s +Apr 5 19:36:05.966: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt" satisfied condition "running" +Apr 5 19:36:05.966: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:36:05.969: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m": Phase="Running", Reason="", readiness=true. Elapsed: 3.314381ms +Apr 5 19:36:05.969: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m" satisfied condition "running" +Apr 5 19:36:05.969: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:36:05.974: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv": Phase="Running", Reason="", readiness=true. Elapsed: 4.522067ms +Apr 5 19:36:05.974: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv" satisfied condition "running" +Apr 5 19:36:05.974: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl" in namespace "emptydir-wrapper-6928" to be "running" +Apr 5 19:36:05.978: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl": Phase="Running", Reason="", readiness=true. Elapsed: 3.804611ms +Apr 5 19:36:05.978: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl" satisfied condition "running" +STEP: deleting ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:36:05.978 +Apr 5 19:36:06.041: INFO: Deleting ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd took: 8.565684ms +Apr 5 19:36:06.142: INFO: Terminating ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd pods took: 100.204896ms +STEP: Cleaning up the configMaps 04/05/23 19:36:09.842 +[AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:36:10.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-wrapper-6928" for this suite. 04/05/23 19:36:10.152 +------------------------------ +• [SLOW TEST] [83.564 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/storage/empty_dir_wrapper.go:189 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir wrapper volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:34:46.594 + Apr 5 19:34:46.594: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir-wrapper 04/05/23 19:34:46.595 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:34:46.611 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:34:46.614 + [BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/storage/empty_dir_wrapper.go:189 + STEP: Creating 50 configmaps 04/05/23 19:34:46.617 + STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:34:46.854 + Apr 5 19:34:46.965: INFO: Pod name wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a: Found 3 pods out of 5 + Apr 5 19:34:51.974: INFO: Pod name wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a: Found 5 pods out of 5 + STEP: Ensuring each pod is running 04/05/23 19:34:51.974 + Apr 5 19:34:51.975: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:34:51.979: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 4.400061ms + Apr 5 19:34:53.989: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014613821s + Apr 5 19:34:55.986: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011330056s + Apr 5 19:34:57.984: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009717159s + Apr 5 19:34:59.987: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 8.012561068s + Apr 5 19:35:01.984: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 10.009386881s + Apr 5 19:35:03.987: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 12.012657517s + Apr 5 19:35:05.986: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 14.011269203s + Apr 5 19:35:07.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009929396s + Apr 5 19:35:09.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz": Phase="Running", Reason="", readiness=true. Elapsed: 18.010819356s + Apr 5 19:35:09.985: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-245sz" satisfied condition "running" + Apr 5 19:35:09.985: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:09.991: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66": Phase="Pending", Reason="", readiness=false. Elapsed: 4.995101ms + Apr 5 19:35:11.997: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66": Phase="Running", Reason="", readiness=true. Elapsed: 2.011081975s + Apr 5 19:35:11.997: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-6dz66" satisfied condition "running" + Apr 5 19:35:11.997: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:12.001: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv": Phase="Running", Reason="", readiness=true. Elapsed: 4.095553ms + Apr 5 19:35:12.001: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-9m8bv" satisfied condition "running" + Apr 5 19:35:12.001: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:12.004: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n": Phase="Running", Reason="", readiness=true. Elapsed: 3.421103ms + Apr 5 19:35:12.004: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-mlb5n" satisfied condition "running" + Apr 5 19:35:12.004: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:12.008: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6": Phase="Running", Reason="", readiness=true. Elapsed: 3.928477ms + Apr 5 19:35:12.008: INFO: Pod "wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a-n99n6" satisfied condition "running" + STEP: deleting ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:35:12.008 + Apr 5 19:35:12.071: INFO: Deleting ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a took: 8.933291ms + Apr 5 19:35:12.173: INFO: Terminating ReplicationController wrapped-volume-race-1d3c60a3-f50d-45ee-8baf-e5adb291264a pods took: 101.452335ms + STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:35:14.68 + Apr 5 19:35:14.695: INFO: Pod name wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7: Found 0 pods out of 5 + Apr 5 19:35:19.708: INFO: Pod name wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7: Found 5 pods out of 5 + STEP: Ensuring each pod is running 04/05/23 19:35:19.708 + Apr 5 19:35:19.709: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:19.713: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.090976ms + Apr 5 19:35:21.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010517864s + Apr 5 19:35:23.718: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009340172s + Apr 5 19:35:25.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00987441s + Apr 5 19:35:27.975: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 8.265929005s + Apr 5 19:35:30.315: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 10.605887726s + Apr 5 19:35:32.208: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 12.499358474s + Apr 5 19:35:33.750: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 14.041135701s + Apr 5 19:35:35.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Pending", Reason="", readiness=false. Elapsed: 16.009906373s + Apr 5 19:35:37.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc": Phase="Running", Reason="", readiness=true. Elapsed: 18.009824527s + Apr 5 19:35:37.719: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-7zxgc" satisfied condition "running" + Apr 5 19:35:37.719: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:37.723: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq": Phase="Running", Reason="", readiness=true. Elapsed: 4.62824ms + Apr 5 19:35:37.723: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-fxjhq" satisfied condition "running" + Apr 5 19:35:37.723: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:37.727: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9": Phase="Running", Reason="", readiness=true. Elapsed: 3.449582ms + Apr 5 19:35:37.727: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-jw8x9" satisfied condition "running" + Apr 5 19:35:37.727: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:37.731: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr": Phase="Running", Reason="", readiness=true. Elapsed: 3.865465ms + Apr 5 19:35:37.731: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-ll9gr" satisfied condition "running" + Apr 5 19:35:37.731: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:37.735: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg": Phase="Pending", Reason="", readiness=false. Elapsed: 4.59112ms + Apr 5 19:35:39.741: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg": Phase="Running", Reason="", readiness=true. Elapsed: 2.009952947s + Apr 5 19:35:39.741: INFO: Pod "wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7-wxckg" satisfied condition "running" + STEP: deleting ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:35:39.741 + Apr 5 19:35:39.805: INFO: Deleting ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 took: 8.681977ms + Apr 5 19:35:39.906: INFO: Terminating ReplicationController wrapped-volume-race-cde8a8e3-e9bd-4298-acdc-9921cfa122f7 pods took: 100.414162ms + STEP: Creating RC which spawns configmap-volume pods 04/05/23 19:35:42.915 + Apr 5 19:35:42.934: INFO: Pod name wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd: Found 0 pods out of 5 + Apr 5 19:35:47.946: INFO: Pod name wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd: Found 5 pods out of 5 + STEP: Ensuring each pod is running 04/05/23 19:35:47.947 + Apr 5 19:35:47.947: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:35:47.950: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.655986ms + Apr 5 19:35:49.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010241065s + Apr 5 19:35:51.955: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008308907s + Apr 5 19:35:53.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009144752s + Apr 5 19:35:55.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 8.010140949s + Apr 5 19:35:57.957: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010317835s + Apr 5 19:35:59.955: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 12.008621345s + Apr 5 19:36:01.958: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Pending", Reason="", readiness=false. Elapsed: 14.010847614s + Apr 5 19:36:03.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6": Phase="Running", Reason="", readiness=true. Elapsed: 16.009608641s + Apr 5 19:36:03.956: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-4x6m6" satisfied condition "running" + Apr 5 19:36:03.956: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:36:03.961: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt": Phase="Pending", Reason="", readiness=false. Elapsed: 4.537289ms + Apr 5 19:36:05.966: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt": Phase="Running", Reason="", readiness=true. Elapsed: 2.009376078s + Apr 5 19:36:05.966: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-87hvt" satisfied condition "running" + Apr 5 19:36:05.966: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:36:05.969: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m": Phase="Running", Reason="", readiness=true. Elapsed: 3.314381ms + Apr 5 19:36:05.969: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-cf86m" satisfied condition "running" + Apr 5 19:36:05.969: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:36:05.974: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv": Phase="Running", Reason="", readiness=true. Elapsed: 4.522067ms + Apr 5 19:36:05.974: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-ffdzv" satisfied condition "running" + Apr 5 19:36:05.974: INFO: Waiting up to 5m0s for pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl" in namespace "emptydir-wrapper-6928" to be "running" + Apr 5 19:36:05.978: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl": Phase="Running", Reason="", readiness=true. Elapsed: 3.804611ms + Apr 5 19:36:05.978: INFO: Pod "wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd-zvczl" satisfied condition "running" + STEP: deleting ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd in namespace emptydir-wrapper-6928, will wait for the garbage collector to delete the pods 04/05/23 19:36:05.978 + Apr 5 19:36:06.041: INFO: Deleting ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd took: 8.565684ms + Apr 5 19:36:06.142: INFO: Terminating ReplicationController wrapped-volume-race-df9ade01-251e-4e2b-8711-fcc32b3a7dfd pods took: 100.204896ms + STEP: Cleaning up the configMaps 04/05/23 19:36:09.842 + [AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:36:10.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir wrapper volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-wrapper-6928" for this suite. 04/05/23 19:36:10.152 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + listing validating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:582 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:36:10.16 +Apr 5 19:36:10.161: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:36:10.162 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:36:10.178 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:36:10.184 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:36:10.202 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:36:10.643 +STEP: Deploying the webhook pod 04/05/23 19:36:10.651 +STEP: Wait for the deployment to be ready 04/05/23 19:36:10.664 +Apr 5 19:36:10.676: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:36:12.690: 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(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:36:14.695: 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(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:36:16.696 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:36:16.717 +Apr 5 19:36:17.717: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] listing validating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:582 +STEP: Listing all of the created validation webhooks 04/05/23 19:36:17.791 +STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:36:17.842 +STEP: Deleting the collection of validation webhooks 04/05/23 19:36:17.885 +STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:36:17.936 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:36:17.947: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-1709" for this suite. 04/05/23 19:36:18.043 +STEP: Destroying namespace "webhook-1709-markers" for this suite. 04/05/23 19:36:18.052 +------------------------------ +• [SLOW TEST] [7.903 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + listing validating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:582 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:36:10.16 + Apr 5 19:36:10.161: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:36:10.162 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:36:10.178 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:36:10.184 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:36:10.202 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:36:10.643 + STEP: Deploying the webhook pod 04/05/23 19:36:10.651 + STEP: Wait for the deployment to be ready 04/05/23 19:36:10.664 + Apr 5 19:36:10.676: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:36:12.690: 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(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:36:14.695: 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(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 36, 10, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:36:16.696 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:36:16.717 + Apr 5 19:36:17.717: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] listing validating webhooks should work [Conformance] + test/e2e/apimachinery/webhook.go:582 + STEP: Listing all of the created validation webhooks 04/05/23 19:36:17.791 + STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:36:17.842 + STEP: Deleting the collection of validation webhooks 04/05/23 19:36:17.885 + STEP: Creating a configMap that does not comply to the validation webhook rules 04/05/23 19:36:17.936 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:36:17.947: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-1709" for this suite. 04/05/23 19:36:18.043 + STEP: Destroying namespace "webhook-1709-markers" for this suite. 04/05/23 19:36:18.052 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] CustomResourceDefinition Watch + watch on custom resource definition objects [Conformance] + test/e2e/apimachinery/crd_watch.go:51 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:36:18.066 +Apr 5 19:36:18.066: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-watch 04/05/23 19:36:18.067 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:36:18.083 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:36:18.086 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] watch on custom resource definition objects [Conformance] + test/e2e/apimachinery/crd_watch.go:51 +Apr 5 19:36:18.089: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Creating first CR 04/05/23 19:36:20.647 +Apr 5 19:36:20.653: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:20Z]] name:name1 resourceVersion:115898 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Creating second CR 04/05/23 19:36:30.654 +Apr 5 19:36:30.661: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:30Z]] name:name2 resourceVersion:116001 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Modifying first CR 04/05/23 19:36:40.662 +Apr 5 19:36:40.669: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:40Z]] name:name1 resourceVersion:116086 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Modifying second CR 04/05/23 19:36:50.671 +Apr 5 19:36:50.679: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:50Z]] name:name2 resourceVersion:116173 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Deleting first CR 04/05/23 19:37:00.68 +Apr 5 19:37:00.689: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:40Z]] name:name1 resourceVersion:116261 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Deleting second CR 04/05/23 19:37:10.689 +Apr 5 19:37:10.698: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:50Z]] name:name2 resourceVersion:116348 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} +[AfterEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:37:21.215: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-watch-5795" for this suite. 04/05/23 19:37:21.221 +------------------------------ +• [SLOW TEST] [63.162 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/apimachinery/crd_watch.go:51 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:36:18.066 + Apr 5 19:36:18.066: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-watch 04/05/23 19:36:18.067 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:36:18.083 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:36:18.086 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] watch on custom resource definition objects [Conformance] + test/e2e/apimachinery/crd_watch.go:51 + Apr 5 19:36:18.089: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Creating first CR 04/05/23 19:36:20.647 + Apr 5 19:36:20.653: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:20Z]] name:name1 resourceVersion:115898 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} + STEP: Creating second CR 04/05/23 19:36:30.654 + Apr 5 19:36:30.661: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:30Z]] name:name2 resourceVersion:116001 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} + STEP: Modifying first CR 04/05/23 19:36:40.662 + Apr 5 19:36:40.669: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:40Z]] name:name1 resourceVersion:116086 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} + STEP: Modifying second CR 04/05/23 19:36:50.671 + Apr 5 19:36:50.679: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:50Z]] name:name2 resourceVersion:116173 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} + STEP: Deleting first CR 04/05/23 19:37:00.68 + Apr 5 19:37:00.689: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:20Z 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:2023-04-05T19:36:40Z]] name:name1 resourceVersion:116261 uid:f90db3c2-aa07-4d38-9bf5-692249a8447c] num:map[num1:9223372036854775807 num2:1000000]]} + STEP: Deleting second CR 04/05/23 19:37:10.689 + Apr 5 19:37:10.698: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2023-04-05T19:36:30Z 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:2023-04-05T19:36:50Z]] name:name2 resourceVersion:116348 uid:8e9f7f81-5612-4750-8022-017c2087391b] num:map[num1:9223372036854775807 num2:1000000]]} + [AfterEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:37:21.215: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-watch-5795" for this suite. 04/05/23 19:37:21.221 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/common/node/expansion.go:186 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:37:21.229 +Apr 5 19:37:21.229: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:37:21.23 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:21.247 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:21.25 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/common/node/expansion.go:186 +Apr 5 19:37:21.266: INFO: Waiting up to 2m0s for pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" in namespace "var-expansion-8356" to be "container 0 failed with reason CreateContainerConfigError" +Apr 5 19:37:21.270: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.800455ms +Apr 5 19:37:23.275: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008972101s +Apr 5 19:37:25.275: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008153109s +Apr 5 19:37:27.276: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009707128s +Apr 5 19:37:27.276: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" satisfied condition "container 0 failed with reason CreateContainerConfigError" +Apr 5 19:37:27.276: INFO: Deleting pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" in namespace "var-expansion-8356" +Apr 5 19:37:27.286: INFO: Wait up to 5m0s for pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:37:29.295: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-8356" for this suite. 04/05/23 19:37:29.302 +------------------------------ +• [SLOW TEST] [8.081 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/common/node/expansion.go:186 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:37:21.229 + Apr 5 19:37:21.229: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:37:21.23 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:21.247 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:21.25 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/common/node/expansion.go:186 + Apr 5 19:37:21.266: INFO: Waiting up to 2m0s for pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" in namespace "var-expansion-8356" to be "container 0 failed with reason CreateContainerConfigError" + Apr 5 19:37:21.270: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.800455ms + Apr 5 19:37:23.275: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008972101s + Apr 5 19:37:25.275: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008153109s + Apr 5 19:37:27.276: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009707128s + Apr 5 19:37:27.276: INFO: Pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" satisfied condition "container 0 failed with reason CreateContainerConfigError" + Apr 5 19:37:27.276: INFO: Deleting pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" in namespace "var-expansion-8356" + Apr 5 19:37:27.286: INFO: Wait up to 5m0s for pod "var-expansion-91522017-6644-42f7-906e-4036706c495c" to be fully deleted + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:37:29.295: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-8356" for this suite. 04/05/23 19:37:29.302 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:221 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:37:29.314 +Apr 5 19:37:29.314: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:37:29.316 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:29.331 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:29.334 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:221 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:37:29.338 +Apr 5 19:37:29.347: INFO: Waiting up to 5m0s for pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59" in namespace "projected-690" to be "Succeeded or Failed" +Apr 5 19:37:29.352: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 4.328823ms +Apr 5 19:37:31.357: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009419374s +Apr 5 19:37:33.356: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00892619s +Apr 5 19:37:35.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010201865s +Apr 5 19:37:37.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010331512s +STEP: Saw pod success 04/05/23 19:37:37.358 +Apr 5 19:37:37.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59" satisfied condition "Succeeded or Failed" +Apr 5 19:37:37.361: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 container client-container: +STEP: delete the pod 04/05/23 19:37:37.375 +Apr 5 19:37:37.390: INFO: Waiting for pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 to disappear +Apr 5 19:37:37.393: INFO: Pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:37:37.393: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-690" for this suite. 04/05/23 19:37:37.399 +------------------------------ +• [SLOW TEST] [8.091 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:221 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:37:29.314 + Apr 5 19:37:29.314: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:37:29.316 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:29.331 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:29.334 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:221 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:37:29.338 + Apr 5 19:37:29.347: INFO: Waiting up to 5m0s for pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59" in namespace "projected-690" to be "Succeeded or Failed" + Apr 5 19:37:29.352: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 4.328823ms + Apr 5 19:37:31.357: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009419374s + Apr 5 19:37:33.356: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00892619s + Apr 5 19:37:35.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010201865s + Apr 5 19:37:37.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010331512s + STEP: Saw pod success 04/05/23 19:37:37.358 + Apr 5 19:37:37.358: INFO: Pod "downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59" satisfied condition "Succeeded or Failed" + Apr 5 19:37:37.361: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 container client-container: + STEP: delete the pod 04/05/23 19:37:37.375 + Apr 5 19:37:37.390: INFO: Waiting for pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 to disappear + Apr 5 19:37:37.393: INFO: Pod downwardapi-volume-2a78f34a-8865-4e69-98f0-7b4c29990d59 no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:37:37.393: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-690" for this suite. 04/05/23 19:37:37.399 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + should validate Replicaset Status endpoints [Conformance] + test/e2e/apps/replica_set.go:176 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:37:37.407 +Apr 5 19:37:37.407: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 19:37:37.408 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:37.424 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:37.428 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] should validate Replicaset Status endpoints [Conformance] + test/e2e/apps/replica_set.go:176 +STEP: Create a Replicaset 04/05/23 19:37:37.437 +STEP: Verify that the required pods have come up. 04/05/23 19:37:37.442 +Apr 5 19:37:37.446: INFO: Pod name sample-pod: Found 0 pods out of 1 +Apr 5 19:37:42.450: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 19:37:42.45 +STEP: Getting /status 04/05/23 19:37:42.451 +Apr 5 19:37:42.457: INFO: Replicaset test-rs has Conditions: [] +STEP: updating the Replicaset Status 04/05/23 19:37:42.457 +Apr 5 19:37:42.467: 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 04/05/23 19:37:42.467 +Apr 5 19:37:42.469: INFO: Observed &ReplicaSet event: ADDED +Apr 5 19:37:42.469: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.470: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.470: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.470: INFO: Found replicaset test-rs in namespace replicaset-6713 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}] +Apr 5 19:37:42.470: INFO: Replicaset test-rs has an updated status +STEP: patching the Replicaset Status 04/05/23 19:37:42.47 +Apr 5 19:37:42.470: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Apr 5 19:37:42.477: 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 04/05/23 19:37:42.478 +Apr 5 19:37:42.479: INFO: Observed &ReplicaSet event: ADDED +Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.480: INFO: Observed replicaset test-rs in namespace replicaset-6713 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED +Apr 5 19:37:42.480: INFO: Found replicaset test-rs in namespace replicaset-6713 with labels: map[name:sample-pod pod:httpd] annotations: map[] & Conditions: {StatusPatched True 0001-01-01 00:00:00 +0000 UTC } +Apr 5 19:37:42.480: INFO: Replicaset test-rs has a patched status +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:37:42.480: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-6713" for this suite. 04/05/23 19:37:42.485 +------------------------------ +• [SLOW TEST] [5.086 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should validate Replicaset Status endpoints [Conformance] + test/e2e/apps/replica_set.go:176 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:37:37.407 + Apr 5 19:37:37.407: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 19:37:37.408 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:37.424 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:37.428 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] should validate Replicaset Status endpoints [Conformance] + test/e2e/apps/replica_set.go:176 + STEP: Create a Replicaset 04/05/23 19:37:37.437 + STEP: Verify that the required pods have come up. 04/05/23 19:37:37.442 + Apr 5 19:37:37.446: INFO: Pod name sample-pod: Found 0 pods out of 1 + Apr 5 19:37:42.450: INFO: Pod name sample-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 19:37:42.45 + STEP: Getting /status 04/05/23 19:37:42.451 + Apr 5 19:37:42.457: INFO: Replicaset test-rs has Conditions: [] + STEP: updating the Replicaset Status 04/05/23 19:37:42.457 + Apr 5 19:37:42.467: 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 04/05/23 19:37:42.467 + Apr 5 19:37:42.469: INFO: Observed &ReplicaSet event: ADDED + Apr 5 19:37:42.469: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.470: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.470: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.470: INFO: Found replicaset test-rs in namespace replicaset-6713 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}] + Apr 5 19:37:42.470: INFO: Replicaset test-rs has an updated status + STEP: patching the Replicaset Status 04/05/23 19:37:42.47 + Apr 5 19:37:42.470: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} + Apr 5 19:37:42.477: 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 04/05/23 19:37:42.478 + Apr 5 19:37:42.479: INFO: Observed &ReplicaSet event: ADDED + Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.480: INFO: Observed replicaset test-rs in namespace replicaset-6713 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} + Apr 5 19:37:42.480: INFO: Observed &ReplicaSet event: MODIFIED + Apr 5 19:37:42.480: INFO: Found replicaset test-rs in namespace replicaset-6713 with labels: map[name:sample-pod pod:httpd] annotations: map[] & Conditions: {StatusPatched True 0001-01-01 00:00:00 +0000 UTC } + Apr 5 19:37:42.480: INFO: Replicaset test-rs has a patched status + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:37:42.480: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-6713" for this suite. 04/05/23 19:37:42.485 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-node] Pods + should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:536 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:37:42.493 +Apr 5 19:37:42.493: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 19:37:42.494 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:42.51 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:42.513 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:536 +Apr 5 19:37:42.516: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: creating the pod 04/05/23 19:37:42.516 +STEP: submitting the pod to kubernetes 04/05/23 19:37:42.516 +Apr 5 19:37:42.525: INFO: Waiting up to 5m0s for pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec" in namespace "pods-4003" to be "running and ready" +Apr 5 19:37:42.529: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 4.027828ms +Apr 5 19:37:42.529: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:37:44.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009851804s +Apr 5 19:37:44.535: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:37:46.534: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008377946s +Apr 5 19:37:46.534: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:37:48.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Running", Reason="", readiness=true. Elapsed: 6.009241781s +Apr 5 19:37:48.535: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Running (Ready = true) +Apr 5 19:37:48.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec" satisfied condition "running and ready" +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 19:37:48.647: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-4003" for this suite. 04/05/23 19:37:48.654 +------------------------------ +• [SLOW TEST] [6.168 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:536 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:37:42.493 + Apr 5 19:37:42.493: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 19:37:42.494 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:42.51 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:42.513 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:536 + Apr 5 19:37:42.516: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: creating the pod 04/05/23 19:37:42.516 + STEP: submitting the pod to kubernetes 04/05/23 19:37:42.516 + Apr 5 19:37:42.525: INFO: Waiting up to 5m0s for pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec" in namespace "pods-4003" to be "running and ready" + Apr 5 19:37:42.529: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 4.027828ms + Apr 5 19:37:42.529: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:37:44.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009851804s + Apr 5 19:37:44.535: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:37:46.534: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008377946s + Apr 5 19:37:46.534: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:37:48.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec": Phase="Running", Reason="", readiness=true. Elapsed: 6.009241781s + Apr 5 19:37:48.535: INFO: The phase of Pod pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec is Running (Ready = true) + Apr 5 19:37:48.535: INFO: Pod "pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec" satisfied condition "running and ready" + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 19:37:48.647: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-4003" for this suite. 04/05/23 19:37:48.654 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[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/scheduling/predicates.go:704 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:37:48.662 +Apr 5 19:37:48.663: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-pred 04/05/23 19:37:48.664 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:48.68 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:48.682 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 +Apr 5 19:37:48.685: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Apr 5 19:37:48.697: INFO: Waiting for terminating namespaces to be deleted... +Apr 5 19:37:48.701: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test +Apr 5 19:37:48.712: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.712: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.712: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.712: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.712: INFO: Container cert-manager-controller ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container cert-manager-cainjector ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container cert-manager-webhook ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container controller ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container kube-sonobuoy ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:37:48.713: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:37:48.713: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test +Apr 5 19:37:48.723: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec from pods-4003 started at 2023-04-05 19:37:42 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container main ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:37:48.723: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:37:48.723: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test +Apr 5 19:37:48.734: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container cilium-operator ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container e2e ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:37:48.734: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:37:48.734: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:37:48.734: 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/scheduling/predicates.go:704 +STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:37:48.734 +Apr 5 19:37:48.745: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-pred-4810" to be "running" +Apr 5 19:37:48.748: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 3.029906ms +Apr 5 19:37:50.754: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009168464s +Apr 5 19:37:52.753: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007722695s +Apr 5 19:37:54.753: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.008281176s +Apr 5 19:37:54.754: INFO: Pod "without-label" satisfied condition "running" +STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:37:54.757 +STEP: Trying to apply a random label on the found node. 04/05/23 19:37:54.773 +STEP: verifying the node has the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc 95 04/05/23 19:37:54.787 +STEP: Trying to create a pod(pod4) with hostport 54322 and hostIP 0.0.0.0(empty string here) and expect scheduled 04/05/23 19:37:54.791 +Apr 5 19:37:54.799: INFO: Waiting up to 5m0s for pod "pod4" in namespace "sched-pred-4810" to be "not pending" +Apr 5 19:37:54.813: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 14.479699ms +Apr 5 19:37:56.818: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.019421458s +Apr 5 19:37:58.819: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020075732s +Apr 5 19:38:00.818: INFO: Pod "pod4": Phase="Running", Reason="", readiness=true. Elapsed: 6.019086502s +Apr 5 19:38:00.818: INFO: Pod "pod4" satisfied condition "not pending" +STEP: Trying to create another pod(pod5) with hostport 54322 but hostIP 195.17.150.192 on the node which pod4 resides and expect not scheduled 04/05/23 19:38:00.818 +Apr 5 19:38:00.828: INFO: Waiting up to 5m0s for pod "pod5" in namespace "sched-pred-4810" to be "not pending" +Apr 5 19:38:00.831: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.941859ms +Apr 5 19:38:02.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008616031s +Apr 5 19:38:04.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009061244s +Apr 5 19:38:06.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008272642s +Apr 5 19:38:08.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007677148s +Apr 5 19:38:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 10.007821649s +Apr 5 19:38:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 12.007433539s +Apr 5 19:38:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 14.008091364s +Apr 5 19:38:16.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 16.007406095s +Apr 5 19:38:18.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 18.00812049s +Apr 5 19:38:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 20.00791764s +Apr 5 19:38:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 22.008154777s +Apr 5 19:38:24.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 24.007866417s +Apr 5 19:38:26.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 26.007460246s +Apr 5 19:38:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 28.008167282s +Apr 5 19:38:30.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 30.008659649s +Apr 5 19:38:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 32.008103304s +Apr 5 19:38:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 34.008250046s +Apr 5 19:38:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 36.00832771s +Apr 5 19:38:38.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 38.008461324s +Apr 5 19:38:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 40.00764505s +Apr 5 19:38:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 42.008033143s +Apr 5 19:38:44.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 44.007183507s +Apr 5 19:38:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 46.007792167s +Apr 5 19:38:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 48.007070935s +Apr 5 19:38:50.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 50.006923918s +Apr 5 19:38:52.838: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 52.010261927s +Apr 5 19:38:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 54.007131323s +Apr 5 19:38:56.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 56.007834372s +Apr 5 19:38:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 58.007725838s +Apr 5 19:39:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m0.007908052s +Apr 5 19:39:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m2.0086485s +Apr 5 19:39:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m4.007269975s +Apr 5 19:39:06.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m6.00694576s +Apr 5 19:39:08.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m8.008940511s +Apr 5 19:39:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m10.008152667s +Apr 5 19:39:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m12.007322247s +Apr 5 19:39:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m14.00803036s +Apr 5 19:39:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m16.008239059s +Apr 5 19:39:18.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m18.007817433s +Apr 5 19:39:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m20.008181821s +Apr 5 19:39:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m22.007952669s +Apr 5 19:39:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m24.007125696s +Apr 5 19:39:26.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m26.008604268s +Apr 5 19:39:28.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m28.007445885s +Apr 5 19:39:30.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m30.008210837s +Apr 5 19:39:32.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m32.007007629s +Apr 5 19:39:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m34.007785918s +Apr 5 19:39:36.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m36.007393923s +Apr 5 19:39:38.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m38.008971046s +Apr 5 19:39:40.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m40.007491821s +Apr 5 19:39:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m42.007860029s +Apr 5 19:39:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m44.008482401s +Apr 5 19:39:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m46.008540873s +Apr 5 19:39:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m48.007001058s +Apr 5 19:39:50.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m50.008892825s +Apr 5 19:39:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m52.007252366s +Apr 5 19:39:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m54.007361334s +Apr 5 19:39:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m56.006691208s +Apr 5 19:39:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m58.007973026s +Apr 5 19:40:00.834: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.006634462s +Apr 5 19:40:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m2.009365748s +Apr 5 19:40:04.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m4.008253087s +Apr 5 19:40:06.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m6.007363582s +Apr 5 19:40:08.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m8.007744255s +Apr 5 19:40:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m10.008632914s +Apr 5 19:40:12.884: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m12.0565954s +Apr 5 19:40:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m14.00804611s +Apr 5 19:40:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m16.008359964s +Apr 5 19:40:18.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m18.007009334s +Apr 5 19:40:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m20.008323702s +Apr 5 19:40:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m22.008073258s +Apr 5 19:40:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m24.007284746s +Apr 5 19:40:26.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m26.009132544s +Apr 5 19:40:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m28.00771791s +Apr 5 19:40:30.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m30.007838279s +Apr 5 19:40:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m32.007866622s +Apr 5 19:40:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m34.007737216s +Apr 5 19:40:36.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m36.006795811s +Apr 5 19:40:38.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m38.006966991s +Apr 5 19:40:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m40.008243664s +Apr 5 19:40:42.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m42.006960677s +Apr 5 19:40:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m44.007903413s +Apr 5 19:40:46.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m46.007465296s +Apr 5 19:40:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m48.006747433s +Apr 5 19:40:50.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m50.007848262s +Apr 5 19:40:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m52.007036404s +Apr 5 19:40:54.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m54.007816404s +Apr 5 19:40:56.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m56.008021086s +Apr 5 19:40:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m58.00846116s +Apr 5 19:41:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m0.008057011s +Apr 5 19:41:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m2.008929945s +Apr 5 19:41:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m4.006964707s +Apr 5 19:41:06.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m6.007996103s +Apr 5 19:41:08.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m8.007573875s +Apr 5 19:41:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m10.008607361s +Apr 5 19:41:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m12.007129836s +Apr 5 19:41:14.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m14.00864497s +Apr 5 19:41:16.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m16.006851153s +Apr 5 19:41:18.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m18.007228244s +Apr 5 19:41:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m20.007928715s +Apr 5 19:41:22.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m22.007078788s +Apr 5 19:41:24.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m24.00784585s +Apr 5 19:41:26.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m26.009499114s +Apr 5 19:41:28.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m28.006854581s +Apr 5 19:41:30.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m30.007596555s +Apr 5 19:41:32.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m32.008808626s +Apr 5 19:41:34.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m34.007308731s +Apr 5 19:41:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m36.008569155s +Apr 5 19:41:38.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m38.008257753s +Apr 5 19:41:40.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m40.007351645s +Apr 5 19:41:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m42.007752706s +Apr 5 19:41:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m44.007819251s +Apr 5 19:41:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m46.008135123s +Apr 5 19:41:48.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m48.009347594s +Apr 5 19:41:50.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m50.009112688s +Apr 5 19:41:52.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m52.008769925s +Apr 5 19:41:54.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m54.007804301s +Apr 5 19:41:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m56.007617306s +Apr 5 19:41:58.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m58.006927684s +Apr 5 19:42:00.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m0.007446199s +Apr 5 19:42:02.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m2.007679739s +Apr 5 19:42:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m4.006992713s +Apr 5 19:42:06.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m6.008715518s +Apr 5 19:42:08.838: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m8.010225682s +Apr 5 19:42:10.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m10.007408849s +Apr 5 19:42:12.839: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m12.011246233s +Apr 5 19:42:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m14.008203584s +Apr 5 19:42:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m16.007940522s +Apr 5 19:42:18.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m18.009433441s +Apr 5 19:42:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m20.007885314s +Apr 5 19:42:22.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m22.008766602s +Apr 5 19:42:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m24.007550618s +Apr 5 19:42:26.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m26.008072151s +Apr 5 19:42:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m28.007878397s +Apr 5 19:42:30.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m30.008854275s +Apr 5 19:42:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m32.008459496s +Apr 5 19:42:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m34.007920852s +Apr 5 19:42:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m36.008507378s +Apr 5 19:42:38.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m38.007035901s +Apr 5 19:42:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m40.007806904s +Apr 5 19:42:42.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m42.008691619s +Apr 5 19:42:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m44.008321037s +Apr 5 19:42:46.834: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m46.00640431s +Apr 5 19:42:48.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m48.007689872s +Apr 5 19:42:50.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m50.008173631s +Apr 5 19:42:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m52.007131527s +Apr 5 19:42:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m54.007041765s +Apr 5 19:42:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m56.007245879s +Apr 5 19:42:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m58.008433305s +Apr 5 19:43:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 5m0.008540711s +Apr 5 19:43:00.840: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 5m0.011780111s +STEP: removing the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:43:00.84 +STEP: verifying the node doesn't have the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc 04/05/23 19:43:00.861 +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:43:00.864: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-pred-4810" for this suite. 04/05/23 19:43:00.87 +------------------------------ +• [SLOW TEST] [312.216 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/scheduling/predicates.go:704 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:37:48.662 + Apr 5 19:37:48.663: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-pred 04/05/23 19:37:48.664 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:37:48.68 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:37:48.682 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 + Apr 5 19:37:48.685: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready + Apr 5 19:37:48.697: INFO: Waiting for terminating namespaces to be deleted... + Apr 5 19:37:48.701: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test + Apr 5 19:37:48.712: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.712: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.712: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.712: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.712: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.712: INFO: Container cert-manager-controller ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container cert-manager-cainjector ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container cert-manager-webhook ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container controller ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container kube-sonobuoy ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:37:48.713: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:37:48.713: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test + Apr 5 19:37:48.723: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: pod-exec-websocket-fd4020c7-d6cc-49c5-a3b2-57275fe459ec from pods-4003 started at 2023-04-05 19:37:42 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container main ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:37:48.723: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:37:48.723: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test + Apr 5 19:37:48.734: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container manager ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container cilium-operator ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container e2e ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:37:48.734: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:37:48.734: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:37:48.734: 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/scheduling/predicates.go:704 + STEP: Trying to launch a pod without a label to get a node which can launch it. 04/05/23 19:37:48.734 + Apr 5 19:37:48.745: INFO: Waiting up to 1m0s for pod "without-label" in namespace "sched-pred-4810" to be "running" + Apr 5 19:37:48.748: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 3.029906ms + Apr 5 19:37:50.754: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009168464s + Apr 5 19:37:52.753: INFO: Pod "without-label": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007722695s + Apr 5 19:37:54.753: INFO: Pod "without-label": Phase="Running", Reason="", readiness=true. Elapsed: 6.008281176s + Apr 5 19:37:54.754: INFO: Pod "without-label" satisfied condition "running" + STEP: Explicitly delete pod here to free the resource it takes. 04/05/23 19:37:54.757 + STEP: Trying to apply a random label on the found node. 04/05/23 19:37:54.773 + STEP: verifying the node has the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc 95 04/05/23 19:37:54.787 + STEP: Trying to create a pod(pod4) with hostport 54322 and hostIP 0.0.0.0(empty string here) and expect scheduled 04/05/23 19:37:54.791 + Apr 5 19:37:54.799: INFO: Waiting up to 5m0s for pod "pod4" in namespace "sched-pred-4810" to be "not pending" + Apr 5 19:37:54.813: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 14.479699ms + Apr 5 19:37:56.818: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.019421458s + Apr 5 19:37:58.819: INFO: Pod "pod4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020075732s + Apr 5 19:38:00.818: INFO: Pod "pod4": Phase="Running", Reason="", readiness=true. Elapsed: 6.019086502s + Apr 5 19:38:00.818: INFO: Pod "pod4" satisfied condition "not pending" + STEP: Trying to create another pod(pod5) with hostport 54322 but hostIP 195.17.150.192 on the node which pod4 resides and expect not scheduled 04/05/23 19:38:00.818 + Apr 5 19:38:00.828: INFO: Waiting up to 5m0s for pod "pod5" in namespace "sched-pred-4810" to be "not pending" + Apr 5 19:38:00.831: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.941859ms + Apr 5 19:38:02.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008616031s + Apr 5 19:38:04.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009061244s + Apr 5 19:38:06.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008272642s + Apr 5 19:38:08.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 8.007677148s + Apr 5 19:38:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 10.007821649s + Apr 5 19:38:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 12.007433539s + Apr 5 19:38:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 14.008091364s + Apr 5 19:38:16.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 16.007406095s + Apr 5 19:38:18.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 18.00812049s + Apr 5 19:38:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 20.00791764s + Apr 5 19:38:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 22.008154777s + Apr 5 19:38:24.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 24.007866417s + Apr 5 19:38:26.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 26.007460246s + Apr 5 19:38:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 28.008167282s + Apr 5 19:38:30.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 30.008659649s + Apr 5 19:38:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 32.008103304s + Apr 5 19:38:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 34.008250046s + Apr 5 19:38:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 36.00832771s + Apr 5 19:38:38.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 38.008461324s + Apr 5 19:38:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 40.00764505s + Apr 5 19:38:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 42.008033143s + Apr 5 19:38:44.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 44.007183507s + Apr 5 19:38:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 46.007792167s + Apr 5 19:38:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 48.007070935s + Apr 5 19:38:50.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 50.006923918s + Apr 5 19:38:52.838: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 52.010261927s + Apr 5 19:38:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 54.007131323s + Apr 5 19:38:56.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 56.007834372s + Apr 5 19:38:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 58.007725838s + Apr 5 19:39:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m0.007908052s + Apr 5 19:39:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m2.0086485s + Apr 5 19:39:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m4.007269975s + Apr 5 19:39:06.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m6.00694576s + Apr 5 19:39:08.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m8.008940511s + Apr 5 19:39:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m10.008152667s + Apr 5 19:39:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m12.007322247s + Apr 5 19:39:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m14.00803036s + Apr 5 19:39:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m16.008239059s + Apr 5 19:39:18.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m18.007817433s + Apr 5 19:39:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m20.008181821s + Apr 5 19:39:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m22.007952669s + Apr 5 19:39:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m24.007125696s + Apr 5 19:39:26.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m26.008604268s + Apr 5 19:39:28.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m28.007445885s + Apr 5 19:39:30.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m30.008210837s + Apr 5 19:39:32.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m32.007007629s + Apr 5 19:39:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m34.007785918s + Apr 5 19:39:36.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m36.007393923s + Apr 5 19:39:38.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m38.008971046s + Apr 5 19:39:40.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m40.007491821s + Apr 5 19:39:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m42.007860029s + Apr 5 19:39:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m44.008482401s + Apr 5 19:39:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m46.008540873s + Apr 5 19:39:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m48.007001058s + Apr 5 19:39:50.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m50.008892825s + Apr 5 19:39:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m52.007252366s + Apr 5 19:39:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m54.007361334s + Apr 5 19:39:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m56.006691208s + Apr 5 19:39:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 1m58.007973026s + Apr 5 19:40:00.834: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.006634462s + Apr 5 19:40:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m2.009365748s + Apr 5 19:40:04.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m4.008253087s + Apr 5 19:40:06.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m6.007363582s + Apr 5 19:40:08.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m8.007744255s + Apr 5 19:40:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m10.008632914s + Apr 5 19:40:12.884: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m12.0565954s + Apr 5 19:40:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m14.00804611s + Apr 5 19:40:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m16.008359964s + Apr 5 19:40:18.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m18.007009334s + Apr 5 19:40:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m20.008323702s + Apr 5 19:40:22.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m22.008073258s + Apr 5 19:40:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m24.007284746s + Apr 5 19:40:26.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m26.009132544s + Apr 5 19:40:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m28.00771791s + Apr 5 19:40:30.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m30.007838279s + Apr 5 19:40:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m32.007866622s + Apr 5 19:40:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m34.007737216s + Apr 5 19:40:36.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m36.006795811s + Apr 5 19:40:38.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m38.006966991s + Apr 5 19:40:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m40.008243664s + Apr 5 19:40:42.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m42.006960677s + Apr 5 19:40:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m44.007903413s + Apr 5 19:40:46.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m46.007465296s + Apr 5 19:40:48.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m48.006747433s + Apr 5 19:40:50.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m50.007848262s + Apr 5 19:40:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m52.007036404s + Apr 5 19:40:54.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m54.007816404s + Apr 5 19:40:56.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m56.008021086s + Apr 5 19:40:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 2m58.00846116s + Apr 5 19:41:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m0.008057011s + Apr 5 19:41:02.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m2.008929945s + Apr 5 19:41:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m4.006964707s + Apr 5 19:41:06.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m6.007996103s + Apr 5 19:41:08.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m8.007573875s + Apr 5 19:41:10.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m10.008607361s + Apr 5 19:41:12.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m12.007129836s + Apr 5 19:41:14.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m14.00864497s + Apr 5 19:41:16.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m16.006851153s + Apr 5 19:41:18.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m18.007228244s + Apr 5 19:41:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m20.007928715s + Apr 5 19:41:22.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m22.007078788s + Apr 5 19:41:24.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m24.00784585s + Apr 5 19:41:26.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m26.009499114s + Apr 5 19:41:28.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m28.006854581s + Apr 5 19:41:30.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m30.007596555s + Apr 5 19:41:32.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m32.008808626s + Apr 5 19:41:34.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m34.007308731s + Apr 5 19:41:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m36.008569155s + Apr 5 19:41:38.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m38.008257753s + Apr 5 19:41:40.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m40.007351645s + Apr 5 19:41:42.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m42.007752706s + Apr 5 19:41:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m44.007819251s + Apr 5 19:41:46.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m46.008135123s + Apr 5 19:41:48.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m48.009347594s + Apr 5 19:41:50.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m50.009112688s + Apr 5 19:41:52.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m52.008769925s + Apr 5 19:41:54.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m54.007804301s + Apr 5 19:41:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m56.007617306s + Apr 5 19:41:58.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 3m58.006927684s + Apr 5 19:42:00.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m0.007446199s + Apr 5 19:42:02.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m2.007679739s + Apr 5 19:42:04.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m4.006992713s + Apr 5 19:42:06.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m6.008715518s + Apr 5 19:42:08.838: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m8.010225682s + Apr 5 19:42:10.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m10.007408849s + Apr 5 19:42:12.839: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m12.011246233s + Apr 5 19:42:14.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m14.008203584s + Apr 5 19:42:16.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m16.007940522s + Apr 5 19:42:18.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m18.009433441s + Apr 5 19:42:20.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m20.007885314s + Apr 5 19:42:22.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m22.008766602s + Apr 5 19:42:24.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m24.007550618s + Apr 5 19:42:26.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m26.008072151s + Apr 5 19:42:28.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m28.007878397s + Apr 5 19:42:30.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m30.008854275s + Apr 5 19:42:32.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m32.008459496s + Apr 5 19:42:34.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m34.007920852s + Apr 5 19:42:36.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m36.008507378s + Apr 5 19:42:38.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m38.007035901s + Apr 5 19:42:40.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m40.007806904s + Apr 5 19:42:42.837: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m42.008691619s + Apr 5 19:42:44.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m44.008321037s + Apr 5 19:42:46.834: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m46.00640431s + Apr 5 19:42:48.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m48.007689872s + Apr 5 19:42:50.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m50.008173631s + Apr 5 19:42:52.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m52.007131527s + Apr 5 19:42:54.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m54.007041765s + Apr 5 19:42:56.835: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m56.007245879s + Apr 5 19:42:58.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 4m58.008433305s + Apr 5 19:43:00.836: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 5m0.008540711s + Apr 5 19:43:00.840: INFO: Pod "pod5": Phase="Pending", Reason="", readiness=false. Elapsed: 5m0.011780111s + STEP: removing the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:43:00.84 + STEP: verifying the node doesn't have the label kubernetes.io/e2e-c307fca4-e731-4bf6-bc0b-ac8e30e508dc 04/05/23 19:43:00.861 + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:43:00.864: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-pred-4810" for this suite. 04/05/23 19:43:00.87 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-storage] Projected configMap + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:174 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:43:00.88 +Apr 5 19:43:00.880: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:43:00.882 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:43:00.899 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:43:00.902 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:174 +STEP: Creating configMap with name cm-test-opt-del-2190285f-a4cf-4980-ad92-65a1f4e8c8f5 04/05/23 19:43:00.911 +STEP: Creating configMap with name cm-test-opt-upd-221b4629-253e-4976-af60-ae6107958325 04/05/23 19:43:00.916 +STEP: Creating the pod 04/05/23 19:43:00.921 +Apr 5 19:43:00.932: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1" in namespace "projected-582" to be "running and ready" +Apr 5 19:43:00.940: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 8.582068ms +Apr 5 19:43:00.940: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:43:02.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013361167s +Apr 5 19:43:02.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:43:04.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01336467s +Apr 5 19:43:04.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:43:06.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Running", Reason="", readiness=true. Elapsed: 6.013348909s +Apr 5 19:43:06.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Running (Ready = true) +Apr 5 19:43:06.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1" satisfied condition "running and ready" +STEP: Deleting configmap cm-test-opt-del-2190285f-a4cf-4980-ad92-65a1f4e8c8f5 04/05/23 19:43:06.983 +STEP: Updating configmap cm-test-opt-upd-221b4629-253e-4976-af60-ae6107958325 04/05/23 19:43:06.989 +STEP: Creating configMap with name cm-test-opt-create-b7d9de07-27da-476a-9c9b-aeabe9f128fa 04/05/23 19:43:06.993 +STEP: waiting to observe update in volume 04/05/23 19:43:06.998 +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:44:25.428: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-582" for this suite. 04/05/23 19:44:25.434 +------------------------------ +• [SLOW TEST] [84.561 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:174 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:43:00.88 + Apr 5 19:43:00.880: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:43:00.882 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:43:00.899 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:43:00.902 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:174 + STEP: Creating configMap with name cm-test-opt-del-2190285f-a4cf-4980-ad92-65a1f4e8c8f5 04/05/23 19:43:00.911 + STEP: Creating configMap with name cm-test-opt-upd-221b4629-253e-4976-af60-ae6107958325 04/05/23 19:43:00.916 + STEP: Creating the pod 04/05/23 19:43:00.921 + Apr 5 19:43:00.932: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1" in namespace "projected-582" to be "running and ready" + Apr 5 19:43:00.940: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 8.582068ms + Apr 5 19:43:00.940: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:43:02.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013361167s + Apr 5 19:43:02.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:43:04.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01336467s + Apr 5 19:43:04.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:43:06.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1": Phase="Running", Reason="", readiness=true. Elapsed: 6.013348909s + Apr 5 19:43:06.945: INFO: The phase of Pod pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1 is Running (Ready = true) + Apr 5 19:43:06.945: INFO: Pod "pod-projected-configmaps-46331559-5cd8-434b-8888-6ae575f793a1" satisfied condition "running and ready" + STEP: Deleting configmap cm-test-opt-del-2190285f-a4cf-4980-ad92-65a1f4e8c8f5 04/05/23 19:43:06.983 + STEP: Updating configmap cm-test-opt-upd-221b4629-253e-4976-af60-ae6107958325 04/05/23 19:43:06.989 + STEP: Creating configMap with name cm-test-opt-create-b7d9de07-27da-476a-9c9b-aeabe9f128fa 04/05/23 19:43:06.993 + STEP: waiting to observe update in volume 04/05/23 19:43:06.998 + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:44:25.428: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-582" for this suite. 04/05/23 19:44:25.434 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command that always fails in a pod + should have an terminated reason [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:110 +[BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:44:25.442 +Apr 5 19:44:25.442: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:44:25.443 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:25.456 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:25.46 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 +[BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:85 +[It] should have an terminated reason [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:110 +[AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:44:33.484: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 +STEP: Destroying namespace "kubelet-test-7406" for this suite. 04/05/23 19:44:33.489 +------------------------------ +• [SLOW TEST] [8.054 seconds] +[sig-node] Kubelet +test/e2e/common/node/framework.go:23 + when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:82 + should have an terminated reason [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:110 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:44:25.442 + Apr 5 19:44:25.442: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:44:25.443 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:25.456 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:25.46 + [BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 + [BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:85 + [It] should have an terminated reason [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:110 + [AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:44:33.484: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 + STEP: Destroying namespace "kubelet-test-7406" for this suite. 04/05/23 19:44:33.489 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should apply changes to a job status [Conformance] + test/e2e/apps/job.go:636 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:44:33.498 +Apr 5 19:44:33.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 19:44:33.499 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:33.514 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:33.517 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should apply changes to a job status [Conformance] + test/e2e/apps/job.go:636 +STEP: Creating a job 04/05/23 19:44:33.52 +STEP: Ensure pods equal to parallelism count is attached to the job 04/05/23 19:44:33.527 +STEP: patching /status 04/05/23 19:44:39.533 +STEP: updating /status 04/05/23 19:44:39.54 +STEP: get /status 04/05/23 19:44:39.548 +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 19:44:39.551: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-2800" for this suite. 04/05/23 19:44:39.557 +------------------------------ +• [SLOW TEST] [6.067 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should apply changes to a job status [Conformance] + test/e2e/apps/job.go:636 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:44:33.498 + Apr 5 19:44:33.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 19:44:33.499 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:33.514 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:33.517 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should apply changes to a job status [Conformance] + test/e2e/apps/job.go:636 + STEP: Creating a job 04/05/23 19:44:33.52 + STEP: Ensure pods equal to parallelism count is attached to the job 04/05/23 19:44:33.527 + STEP: patching /status 04/05/23 19:44:39.533 + STEP: updating /status 04/05/23 19:44:39.54 + STEP: get /status 04/05/23 19:44:39.548 + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 19:44:39.551: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-2800" for this suite. 04/05/23 19:44:39.557 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should mount projected service account token [Conformance] + test/e2e/auth/service_accounts.go:275 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:44:39.566 +Apr 5 19:44:39.566: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:44:39.567 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:39.58 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:39.584 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should mount projected service account token [Conformance] + test/e2e/auth/service_accounts.go:275 +STEP: Creating a pod to test service account token: 04/05/23 19:44:39.588 +Apr 5 19:44:39.597: INFO: Waiting up to 5m0s for pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2" in namespace "svcaccounts-3391" to be "Succeeded or Failed" +Apr 5 19:44:39.600: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.45348ms +Apr 5 19:44:41.606: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008742289s +Apr 5 19:44:43.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008054658s +Apr 5 19:44:45.604: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007483349s +Apr 5 19:44:47.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008291807s +STEP: Saw pod success 04/05/23 19:44:47.605 +Apr 5 19:44:47.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2" satisfied condition "Succeeded or Failed" +Apr 5 19:44:47.610: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 container agnhost-container: +STEP: delete the pod 04/05/23 19:44:47.616 +Apr 5 19:44:47.628: INFO: Waiting for pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 to disappear +Apr 5 19:44:47.631: INFO: Pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 no longer exists +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:44:47.631: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-3391" for this suite. 04/05/23 19:44:47.637 +------------------------------ +• [SLOW TEST] [8.077 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should mount projected service account token [Conformance] + test/e2e/auth/service_accounts.go:275 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:44:39.566 + Apr 5 19:44:39.566: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:44:39.567 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:39.58 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:39.584 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should mount projected service account token [Conformance] + test/e2e/auth/service_accounts.go:275 + STEP: Creating a pod to test service account token: 04/05/23 19:44:39.588 + Apr 5 19:44:39.597: INFO: Waiting up to 5m0s for pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2" in namespace "svcaccounts-3391" to be "Succeeded or Failed" + Apr 5 19:44:39.600: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.45348ms + Apr 5 19:44:41.606: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008742289s + Apr 5 19:44:43.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008054658s + Apr 5 19:44:45.604: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007483349s + Apr 5 19:44:47.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008291807s + STEP: Saw pod success 04/05/23 19:44:47.605 + Apr 5 19:44:47.605: INFO: Pod "test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2" satisfied condition "Succeeded or Failed" + Apr 5 19:44:47.610: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 container agnhost-container: + STEP: delete the pod 04/05/23 19:44:47.616 + Apr 5 19:44:47.628: INFO: Waiting for pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 to disappear + Apr 5 19:44:47.631: INFO: Pod test-pod-dcbbc51b-05cb-4dcd-a0ee-da93130c5ba2 no longer exists + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:44:47.631: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-3391" for this suite. 04/05/23 19:44:47.637 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should rollback without unnecessary restarts [Conformance] + test/e2e/apps/daemon_set.go:432 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:44:47.649 +Apr 5 19:44:47.649: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 19:44:47.65 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:47.664 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:47.666 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should rollback without unnecessary restarts [Conformance] + test/e2e/apps/daemon_set.go:432 +Apr 5 19:44:47.695: INFO: Create a RollingUpdate DaemonSet +Apr 5 19:44:47.701: INFO: Check that daemon pods launch on every node of the cluster +Apr 5 19:44:47.707: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:47.707: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:47.708: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:47.711: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:44:47.711: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:48.722: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:44:48.722: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:44:49.719: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:49.719: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:49.720: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:49.725: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:44:49.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:44:50.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:50.718: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:50.719: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:50.724: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:44:50.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:44:51.717: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:51.717: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:51.718: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:51.721: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:44:51.721: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 19:44:52.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:52.719: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:52.719: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:52.722: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 19:44:52.722: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +Apr 5 19:44:52.722: INFO: Update the DaemonSet to trigger a rollout +Apr 5 19:44:52.732: INFO: Updating DaemonSet daemon-set +Apr 5 19:44:55.754: INFO: Roll back the DaemonSet before rollout is complete +Apr 5 19:44:55.766: INFO: Updating DaemonSet daemon-set +Apr 5 19:44:55.766: INFO: Make sure DaemonSet rollback is complete +Apr 5 19:44:55.771: INFO: Wrong image for pod: daemon-set-zz28b. Expected: registry.k8s.io/e2e-test-images/httpd:2.4.38-4, got: foo:non-existent. +Apr 5 19:44:55.771: INFO: Pod daemon-set-zz28b is not available +Apr 5 19:44:55.775: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:55.776: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:55.776: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:56.786: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:56.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:56.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:58.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:58.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:58.789: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:01.780: INFO: Pod daemon-set-724f2 is not available +Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 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:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 19:45:01.797 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-947, will wait for the garbage collector to delete the pods 04/05/23 19:45:01.798 +Apr 5 19:45:01.859: INFO: Deleting DaemonSet.extensions daemon-set took: 8.12384ms +Apr 5 19:45:01.960: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.647451ms +Apr 5 19:45:06.466: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 19:45:06.466: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 19:45:06.469: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"120890"},"items":null} + +Apr 5 19:45:06.471: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"120890"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:06.489: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-947" for this suite. 04/05/23 19:45:06.494 +------------------------------ +• [SLOW TEST] [18.852 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should rollback without unnecessary restarts [Conformance] + test/e2e/apps/daemon_set.go:432 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:44:47.649 + Apr 5 19:44:47.649: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 19:44:47.65 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:44:47.664 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:44:47.666 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should rollback without unnecessary restarts [Conformance] + test/e2e/apps/daemon_set.go:432 + Apr 5 19:44:47.695: INFO: Create a RollingUpdate DaemonSet + Apr 5 19:44:47.701: INFO: Check that daemon pods launch on every node of the cluster + Apr 5 19:44:47.707: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:47.707: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:47.708: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:47.711: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:44:47.711: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:48.718: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:48.722: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:44:48.722: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:44:49.719: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:49.719: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:49.720: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:49.725: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:44:49.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:44:50.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:50.718: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:50.719: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:50.724: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:44:50.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:44:51.717: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:51.717: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:51.718: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:51.721: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:44:51.721: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 19:44:52.718: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:52.719: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:52.719: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:52.722: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 19:44:52.722: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set + Apr 5 19:44:52.722: INFO: Update the DaemonSet to trigger a rollout + Apr 5 19:44:52.732: INFO: Updating DaemonSet daemon-set + Apr 5 19:44:55.754: INFO: Roll back the DaemonSet before rollout is complete + Apr 5 19:44:55.766: INFO: Updating DaemonSet daemon-set + Apr 5 19:44:55.766: INFO: Make sure DaemonSet rollback is complete + Apr 5 19:44:55.771: INFO: Wrong image for pod: daemon-set-zz28b. Expected: registry.k8s.io/e2e-test-images/httpd:2.4.38-4, got: foo:non-existent. + Apr 5 19:44:55.771: INFO: Pod daemon-set-zz28b is not available + Apr 5 19:44:55.775: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:55.776: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:55.776: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:56.786: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:56.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:56.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:57.788: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:58.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:58.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:58.789: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:44:59.788: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:00.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:01.780: INFO: Pod daemon-set-724f2 is not available + Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 19:45:01.787: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 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:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 19:45:01.797 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-947, will wait for the garbage collector to delete the pods 04/05/23 19:45:01.798 + Apr 5 19:45:01.859: INFO: Deleting DaemonSet.extensions daemon-set took: 8.12384ms + Apr 5 19:45:01.960: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.647451ms + Apr 5 19:45:06.466: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 19:45:06.466: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 19:45:06.469: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"120890"},"items":null} + + Apr 5 19:45:06.471: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"120890"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:06.489: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-947" for this suite. 04/05/23 19:45:06.494 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:261 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:06.507 +Apr 5 19:45:06.507: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:45:06.508 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:06.521 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:06.524 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:261 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:45:06.528 +Apr 5 19:45:06.537: INFO: Waiting up to 5m0s for pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839" in namespace "projected-5692" to be "Succeeded or Failed" +Apr 5 19:45:06.540: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 3.366293ms +Apr 5 19:45:08.544: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007354313s +Apr 5 19:45:10.545: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008254831s +Apr 5 19:45:12.669: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 6.131758356s +Apr 5 19:45:14.546: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009210624s +STEP: Saw pod success 04/05/23 19:45:14.546 +Apr 5 19:45:14.546: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839" satisfied condition "Succeeded or Failed" +Apr 5 19:45:14.550: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 container client-container: +STEP: delete the pod 04/05/23 19:45:14.557 +Apr 5 19:45:14.572: INFO: Waiting for pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 to disappear +Apr 5 19:45:14.576: INFO: Pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:14.576: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-5692" for this suite. 04/05/23 19:45:14.582 +------------------------------ +• [SLOW TEST] [8.081 seconds] +[sig-storage] Projected downwardAPI +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/common/storage/projected_downwardapi.go:261 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:06.507 + Apr 5 19:45:06.507: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:45:06.508 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:06.521 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:06.524 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:261 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:45:06.528 + Apr 5 19:45:06.537: INFO: Waiting up to 5m0s for pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839" in namespace "projected-5692" to be "Succeeded or Failed" + Apr 5 19:45:06.540: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 3.366293ms + Apr 5 19:45:08.544: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007354313s + Apr 5 19:45:10.545: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008254831s + Apr 5 19:45:12.669: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Pending", Reason="", readiness=false. Elapsed: 6.131758356s + Apr 5 19:45:14.546: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009210624s + STEP: Saw pod success 04/05/23 19:45:14.546 + Apr 5 19:45:14.546: INFO: Pod "downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839" satisfied condition "Succeeded or Failed" + Apr 5 19:45:14.550: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 container client-container: + STEP: delete the pod 04/05/23 19:45:14.557 + Apr 5 19:45:14.572: INFO: Waiting for pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 to disappear + Apr 5 19:45:14.576: INFO: Pod downwardapi-volume-95e78948-bd66-4e34-9357-b6701899b839 no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:14.576: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-5692" for this suite. 04/05/23 19:45:14.582 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should create a PodDisruptionBudget [Conformance] + test/e2e/apps/disruption.go:108 +[BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:14.59 +Apr 5 19:45:14.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption 04/05/23 19:45:14.591 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:14.608 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:14.611 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 +[It] should create a PodDisruptionBudget [Conformance] + test/e2e/apps/disruption.go:108 +STEP: creating the pdb 04/05/23 19:45:14.615 +STEP: Waiting for the pdb to be processed 04/05/23 19:45:14.62 +STEP: updating the pdb 04/05/23 19:45:14.628 +STEP: Waiting for the pdb to be processed 04/05/23 19:45:14.637 +STEP: patching the pdb 04/05/23 19:45:16.646 +STEP: Waiting for the pdb to be processed 04/05/23 19:45:16.655 +STEP: Waiting for the pdb to be deleted 04/05/23 19:45:18.67 +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:18.673: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-7502" for this suite. 04/05/23 19:45:18.679 +------------------------------ +• [4.096 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should create a PodDisruptionBudget [Conformance] + test/e2e/apps/disruption.go:108 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:14.59 + Apr 5 19:45:14.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption 04/05/23 19:45:14.591 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:14.608 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:14.611 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 + [It] should create a PodDisruptionBudget [Conformance] + test/e2e/apps/disruption.go:108 + STEP: creating the pdb 04/05/23 19:45:14.615 + STEP: Waiting for the pdb to be processed 04/05/23 19:45:14.62 + STEP: updating the pdb 04/05/23 19:45:14.628 + STEP: Waiting for the pdb to be processed 04/05/23 19:45:14.637 + STEP: patching the pdb 04/05/23 19:45:16.646 + STEP: Waiting for the pdb to be processed 04/05/23 19:45:16.655 + STEP: Waiting for the pdb to be deleted 04/05/23 19:45:18.67 + [AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:18.673: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-7502" for this suite. 04/05/23 19:45:18.679 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2191 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:18.691 +Apr 5 19:45:18.691: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:45:18.692 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:18.706 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:18.708 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2191 +STEP: creating service in namespace services-2222 04/05/23 19:45:18.711 +STEP: creating service affinity-clusterip in namespace services-2222 04/05/23 19:45:18.712 +STEP: creating replication controller affinity-clusterip in namespace services-2222 04/05/23 19:45:18.737 +I0405 19:45:18.744683 19 runners.go:193] Created replication controller with name: affinity-clusterip, namespace: services-2222, replica count: 3 +I0405 19:45:21.796267 19 runners.go:193] affinity-clusterip Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 19:45:24.797107 19 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 +Apr 5 19:45:24.804: INFO: Creating new exec pod +Apr 5 19:45:24.810: INFO: Waiting up to 5m0s for pod "execpod-affinitycm727" in namespace "services-2222" to be "running" +Apr 5 19:45:24.813: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 3.272293ms +Apr 5 19:45:26.819: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008845557s +Apr 5 19:45:28.818: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008156537s +Apr 5 19:45:30.818: INFO: Pod "execpod-affinitycm727": Phase="Running", Reason="", readiness=true. Elapsed: 6.008167557s +Apr 5 19:45:30.818: INFO: Pod "execpod-affinitycm727" satisfied condition "running" +Apr 5 19:45:31.819: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c nc -v -z -w 2 affinity-clusterip 80' +Apr 5 19:45:32.009: INFO: stderr: "+ nc -v -z -w 2 affinity-clusterip 80\nConnection to affinity-clusterip 80 port [tcp/http] succeeded!\n" +Apr 5 19:45:32.009: INFO: stdout: "" +Apr 5 19:45:32.009: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c nc -v -z -w 2 10.136.33.139 80' +Apr 5 19:45:32.190: INFO: stderr: "+ nc -v -z -w 2 10.136.33.139 80\nConnection to 10.136.33.139 80 port [tcp/http] succeeded!\n" +Apr 5 19:45:32.190: INFO: stdout: "" +Apr 5 19:45:32.190: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.136.33.139:80/ ; done' +Apr 5 19:45:32.489: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n" +Apr 5 19:45:32.489: INFO: stdout: "\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll" +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll +Apr 5 19:45:32.490: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-clusterip in namespace services-2222, will wait for the garbage collector to delete the pods 04/05/23 19:45:32.508 +Apr 5 19:45:32.571: INFO: Deleting ReplicationController affinity-clusterip took: 7.045785ms +Apr 5 19:45:32.671: INFO: Terminating ReplicationController affinity-clusterip pods took: 100.487766ms +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:34.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-2222" for this suite. 04/05/23 19:45:34.804 +------------------------------ +• [SLOW TEST] [16.120 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/network/service.go:2191 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:18.691 + Apr 5 19:45:18.691: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:45:18.692 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:18.706 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:18.708 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/network/service.go:2191 + STEP: creating service in namespace services-2222 04/05/23 19:45:18.711 + STEP: creating service affinity-clusterip in namespace services-2222 04/05/23 19:45:18.712 + STEP: creating replication controller affinity-clusterip in namespace services-2222 04/05/23 19:45:18.737 + I0405 19:45:18.744683 19 runners.go:193] Created replication controller with name: affinity-clusterip, namespace: services-2222, replica count: 3 + I0405 19:45:21.796267 19 runners.go:193] affinity-clusterip Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 19:45:24.797107 19 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 + Apr 5 19:45:24.804: INFO: Creating new exec pod + Apr 5 19:45:24.810: INFO: Waiting up to 5m0s for pod "execpod-affinitycm727" in namespace "services-2222" to be "running" + Apr 5 19:45:24.813: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 3.272293ms + Apr 5 19:45:26.819: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008845557s + Apr 5 19:45:28.818: INFO: Pod "execpod-affinitycm727": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008156537s + Apr 5 19:45:30.818: INFO: Pod "execpod-affinitycm727": Phase="Running", Reason="", readiness=true. Elapsed: 6.008167557s + Apr 5 19:45:30.818: INFO: Pod "execpod-affinitycm727" satisfied condition "running" + Apr 5 19:45:31.819: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c nc -v -z -w 2 affinity-clusterip 80' + Apr 5 19:45:32.009: INFO: stderr: "+ nc -v -z -w 2 affinity-clusterip 80\nConnection to affinity-clusterip 80 port [tcp/http] succeeded!\n" + Apr 5 19:45:32.009: INFO: stdout: "" + Apr 5 19:45:32.009: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c nc -v -z -w 2 10.136.33.139 80' + Apr 5 19:45:32.190: INFO: stderr: "+ nc -v -z -w 2 10.136.33.139 80\nConnection to 10.136.33.139 80 port [tcp/http] succeeded!\n" + Apr 5 19:45:32.190: INFO: stdout: "" + Apr 5 19:45:32.190: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-2222 exec execpod-affinitycm727 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://10.136.33.139:80/ ; done' + Apr 5 19:45:32.489: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://10.136.33.139:80/\n" + Apr 5 19:45:32.489: INFO: stdout: "\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll\naffinity-clusterip-l69ll" + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Received response from host: affinity-clusterip-l69ll + Apr 5 19:45:32.490: INFO: Cleaning up the exec pod + STEP: deleting ReplicationController affinity-clusterip in namespace services-2222, will wait for the garbage collector to delete the pods 04/05/23 19:45:32.508 + Apr 5 19:45:32.571: INFO: Deleting ReplicationController affinity-clusterip took: 7.045785ms + Apr 5 19:45:32.671: INFO: Terminating ReplicationController affinity-clusterip pods took: 100.487766ms + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:34.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-2222" for this suite. 04/05/23 19:45:34.804 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates resource limits of pods that are allowed to run [Conformance] + test/e2e/scheduling/predicates.go:331 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:34.812 +Apr 5 19:45:34.812: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-pred 04/05/23 19:45:34.813 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:34.829 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:34.832 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 +Apr 5 19:45:34.834: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Apr 5 19:45:34.845: INFO: Waiting for terminating namespaces to be deleted... +Apr 5 19:45:34.849: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test +Apr 5 19:45:34.860: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container cert-manager-controller ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container cert-manager-cainjector ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container cert-manager-webhook ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container controller ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:45:34.860: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.860: INFO: Container kube-sonobuoy ready: true, restart count 0 +Apr 5 19:45:34.861: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:45:34.861: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:45:34.861: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:45:34.861: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test +Apr 5 19:45:34.872: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.872: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:45:34.872: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.872: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:45:34.872: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.872: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:45:34.872: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.872: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:45:34.872: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 19:45:34.873: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:45:34.873: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:45:34.873: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:45:34.873: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:45:34.873: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:45:34.873: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 19:45:34.873: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test +Apr 5 19:45:34.884: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.884: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.884: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 19:45:34.884: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.884: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container manager ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container cilium-operator ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container e2e ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 19:45:34.885: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 19:45:34.885: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates resource limits of pods that are allowed to run [Conformance] + test/e2e/scheduling/predicates.go:331 +STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-jf7bt 04/05/23 19:45:34.922 +STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:45:34.941 +STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-wbqh5 04/05/23 19:45:34.979 +Apr 5 19:45:35.042: INFO: Pod capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.042: INFO: Pod capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.043: INFO: Pod capi-controller-manager-756894d74c-gpn4m requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.043: INFO: Pod capv-controller-manager-65f99487dc-rcqmt requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.043: INFO: Pod cert-manager-bbb4c6d55-2m7x2 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.043: INFO: Pod cert-manager-cainjector-7cd794bf67-2k8p4 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.043: INFO: Pod cert-manager-webhook-585cdf6cfc-pnqnz requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.043: INFO: Pod ecr-credential-provider-package-2hcn7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.044: INFO: Pod ecr-credential-provider-package-chkwr requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.044: INFO: Pod ecr-credential-provider-package-rgvfg requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.044: INFO: Pod eks-anywhere-packages-64c7bf66f-24mx5 requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.044: INFO: Pod eksa-controller-manager-7759b656fd-gsjmc requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.044: INFO: Pod etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.044: INFO: Pod etcdadm-controller-controller-manager-855d55b7c7-p5w5n requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.045: INFO: Pod cilium-85qd4 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.045: INFO: Pod cilium-kv8fp requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.045: INFO: Pod cilium-operator-77fff79788-z92jx requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.045: INFO: Pod cilium-w5g8r requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.045: INFO: Pod kube-proxy-9mnqq requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.045: INFO: Pod kube-proxy-w4cs9 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.046: INFO: Pod kube-proxy-xj7ps requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-45g5k requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-lbm9d requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-zgvjz requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.046: INFO: Pod vsphere-csi-node-8vn9c requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.046: INFO: Pod vsphere-csi-node-dffrg requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.047: INFO: Pod vsphere-csi-node-xggld requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.047: INFO: Pod sonobuoy requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.047: INFO: Pod sonobuoy-e2e-job-3c6b6a7689374910 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt +STEP: Starting Pods to consume most of the cluster CPU. 04/05/23 19:45:35.048 +Apr 5 19:45:35.050: INFO: Creating a pod which consumes cpu=1190m on Node ttneyla26-md-0-8474989c68-jf7bt +Apr 5 19:45:35.058: INFO: Creating a pod which consumes cpu=1260m on Node ttneyla26-md-0-8474989c68-rj4zb +Apr 5 19:45:35.063: INFO: Creating a pod which consumes cpu=1120m on Node ttneyla26-md-0-8474989c68-wbqh5 +Apr 5 19:45:35.092: INFO: Waiting up to 5m0s for pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940" in namespace "sched-pred-5692" to be "running" +Apr 5 19:45:35.096: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 3.524125ms +Apr 5 19:45:37.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008726787s +Apr 5 19:45:39.100: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007656769s +Apr 5 19:45:41.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Running", Reason="", readiness=true. Elapsed: 6.008570459s +Apr 5 19:45:41.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940" satisfied condition "running" +Apr 5 19:45:41.101: INFO: Waiting up to 5m0s for pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45" in namespace "sched-pred-5692" to be "running" +Apr 5 19:45:41.104: INFO: Pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45": Phase="Running", Reason="", readiness=true. Elapsed: 3.616845ms +Apr 5 19:45:41.104: INFO: Pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45" satisfied condition "running" +Apr 5 19:45:41.104: INFO: Waiting up to 5m0s for pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538" in namespace "sched-pred-5692" to be "running" +Apr 5 19:45:41.108: INFO: Pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538": Phase="Running", Reason="", readiness=true. Elapsed: 3.303502ms +Apr 5 19:45:41.108: INFO: Pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538" satisfied condition "running" +STEP: Creating another pod that requires unavailable amount of CPU. 04/05/23 19:45:41.108 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.175321839b4bc670], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45 to ttneyla26-md-0-8474989c68-rj4zb] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.1753218476602d71], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.1753218477cf5d23], Reason = [Created], Message = [Created container filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.175321848164a9ad], Reason = [Started], Message = [Started container filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.175321839d0a7251], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538 to ttneyla26-md-0-8474989c68-wbqh5] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218477943b55], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218478f50849], Reason = [Created], Message = [Created container filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218482e5d40b], Reason = [Started], Message = [Started container filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321839b281f13], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940 to ttneyla26-md-0-8474989c68-jf7bt] 04/05/23 19:45:41.112 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321847968a76d], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.113 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321847b573bbc], Reason = [Created], Message = [Created container filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940] 04/05/23 19:45:41.113 +STEP: Considering event: +Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.1753218484a6ddf6], Reason = [Started], Message = [Started container filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940] 04/05/23 19:45:41.113 +STEP: Considering event: +Type = [Warning], Name = [additional-pod.1753218503ece557], Reason = [FailedScheduling], Message = [0/6 nodes are available: 3 Insufficient cpu, 3 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }. preemption: 0/6 nodes are available: 3 No preemption victims found for incoming pod, 3 Preemption is not helpful for scheduling..] 04/05/23 19:45:41.134 +STEP: removing the label node off the node ttneyla26-md-0-8474989c68-jf7bt 04/05/23 19:45:42.125 +STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.143 +STEP: removing the label node off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:45:42.148 +STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.169 +STEP: removing the label node off the node ttneyla26-md-0-8474989c68-wbqh5 04/05/23 19:45:42.174 +STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.199 +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:42.248: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-pred-5692" for this suite. 04/05/23 19:45:42.258 +------------------------------ +• [SLOW TEST] [7.454 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates resource limits of pods that are allowed to run [Conformance] + test/e2e/scheduling/predicates.go:331 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:34.812 + Apr 5 19:45:34.812: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-pred 04/05/23 19:45:34.813 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:34.829 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:34.832 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 + Apr 5 19:45:34.834: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready + Apr 5 19:45:34.845: INFO: Waiting for terminating namespaces to be deleted... + Apr 5 19:45:34.849: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test + Apr 5 19:45:34.860: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container cert-manager-controller ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container cert-manager-cainjector ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container cert-manager-webhook ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container controller ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:45:34.860: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.860: INFO: Container kube-sonobuoy ready: true, restart count 0 + Apr 5 19:45:34.861: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:45:34.861: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:45:34.861: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:45:34.861: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test + Apr 5 19:45:34.872: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.872: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:45:34.872: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.872: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:45:34.872: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.872: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:45:34.872: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.872: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:45:34.872: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 19:45:34.873: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:45:34.873: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:45:34.873: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:45:34.873: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:45:34.873: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:45:34.873: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 19:45:34.873: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test + Apr 5 19:45:34.884: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.884: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.884: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 19:45:34.884: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.884: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.884: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container manager ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container cilium-operator ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container e2e ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 19:45:34.885: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 19:45:34.885: INFO: Container systemd-logs ready: true, restart count 0 + [It] validates resource limits of pods that are allowed to run [Conformance] + test/e2e/scheduling/predicates.go:331 + STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-jf7bt 04/05/23 19:45:34.922 + STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:45:34.941 + STEP: verifying the node has the label node ttneyla26-md-0-8474989c68-wbqh5 04/05/23 19:45:34.979 + Apr 5 19:45:35.042: INFO: Pod capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.042: INFO: Pod capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.043: INFO: Pod capi-controller-manager-756894d74c-gpn4m requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.043: INFO: Pod capv-controller-manager-65f99487dc-rcqmt requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.043: INFO: Pod cert-manager-bbb4c6d55-2m7x2 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.043: INFO: Pod cert-manager-cainjector-7cd794bf67-2k8p4 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.043: INFO: Pod cert-manager-webhook-585cdf6cfc-pnqnz requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.043: INFO: Pod ecr-credential-provider-package-2hcn7 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.044: INFO: Pod ecr-credential-provider-package-chkwr requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.044: INFO: Pod ecr-credential-provider-package-rgvfg requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.044: INFO: Pod eks-anywhere-packages-64c7bf66f-24mx5 requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.044: INFO: Pod eksa-controller-manager-7759b656fd-gsjmc requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.044: INFO: Pod etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.044: INFO: Pod etcdadm-controller-controller-manager-855d55b7c7-p5w5n requesting resource cpu=100m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.045: INFO: Pod cilium-85qd4 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.045: INFO: Pod cilium-kv8fp requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.045: INFO: Pod cilium-operator-77fff79788-z92jx requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.045: INFO: Pod cilium-w5g8r requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.045: INFO: Pod kube-proxy-9mnqq requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.045: INFO: Pod kube-proxy-w4cs9 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.046: INFO: Pod kube-proxy-xj7ps requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-45g5k requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-lbm9d requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.046: INFO: Pod vsphere-cloud-controller-manager-zgvjz requesting resource cpu=200m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.046: INFO: Pod vsphere-csi-node-8vn9c requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.046: INFO: Pod vsphere-csi-node-dffrg requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.047: INFO: Pod vsphere-csi-node-xggld requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.047: INFO: Pod sonobuoy requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.047: INFO: Pod sonobuoy-e2e-job-3c6b6a7689374910 requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.047: INFO: Pod sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d requesting resource cpu=0m on Node ttneyla26-md-0-8474989c68-jf7bt + STEP: Starting Pods to consume most of the cluster CPU. 04/05/23 19:45:35.048 + Apr 5 19:45:35.050: INFO: Creating a pod which consumes cpu=1190m on Node ttneyla26-md-0-8474989c68-jf7bt + Apr 5 19:45:35.058: INFO: Creating a pod which consumes cpu=1260m on Node ttneyla26-md-0-8474989c68-rj4zb + Apr 5 19:45:35.063: INFO: Creating a pod which consumes cpu=1120m on Node ttneyla26-md-0-8474989c68-wbqh5 + Apr 5 19:45:35.092: INFO: Waiting up to 5m0s for pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940" in namespace "sched-pred-5692" to be "running" + Apr 5 19:45:35.096: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 3.524125ms + Apr 5 19:45:37.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008726787s + Apr 5 19:45:39.100: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007656769s + Apr 5 19:45:41.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940": Phase="Running", Reason="", readiness=true. Elapsed: 6.008570459s + Apr 5 19:45:41.101: INFO: Pod "filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940" satisfied condition "running" + Apr 5 19:45:41.101: INFO: Waiting up to 5m0s for pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45" in namespace "sched-pred-5692" to be "running" + Apr 5 19:45:41.104: INFO: Pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45": Phase="Running", Reason="", readiness=true. Elapsed: 3.616845ms + Apr 5 19:45:41.104: INFO: Pod "filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45" satisfied condition "running" + Apr 5 19:45:41.104: INFO: Waiting up to 5m0s for pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538" in namespace "sched-pred-5692" to be "running" + Apr 5 19:45:41.108: INFO: Pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538": Phase="Running", Reason="", readiness=true. Elapsed: 3.303502ms + Apr 5 19:45:41.108: INFO: Pod "filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538" satisfied condition "running" + STEP: Creating another pod that requires unavailable amount of CPU. 04/05/23 19:45:41.108 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.175321839b4bc670], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45 to ttneyla26-md-0-8474989c68-rj4zb] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.1753218476602d71], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.1753218477cf5d23], Reason = [Created], Message = [Created container filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45.175321848164a9ad], Reason = [Started], Message = [Started container filler-pod-0839a640-ba80-4614-a9a7-dd9f23f59e45] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.175321839d0a7251], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538 to ttneyla26-md-0-8474989c68-wbqh5] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218477943b55], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218478f50849], Reason = [Created], Message = [Created container filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538.1753218482e5d40b], Reason = [Started], Message = [Started container filler-pod-68ca012e-b368-4122-812a-f6b7b9bd5538] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321839b281f13], Reason = [Scheduled], Message = [Successfully assigned sched-pred-5692/filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940 to ttneyla26-md-0-8474989c68-jf7bt] 04/05/23 19:45:41.112 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321847968a76d], Reason = [Pulled], Message = [Container image "registry.k8s.io/pause:3.9" already present on machine] 04/05/23 19:45:41.113 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.175321847b573bbc], Reason = [Created], Message = [Created container filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940] 04/05/23 19:45:41.113 + STEP: Considering event: + Type = [Normal], Name = [filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940.1753218484a6ddf6], Reason = [Started], Message = [Started container filler-pod-8b73f0be-1a1c-4d88-858f-f562f1c5a940] 04/05/23 19:45:41.113 + STEP: Considering event: + Type = [Warning], Name = [additional-pod.1753218503ece557], Reason = [FailedScheduling], Message = [0/6 nodes are available: 3 Insufficient cpu, 3 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }. preemption: 0/6 nodes are available: 3 No preemption victims found for incoming pod, 3 Preemption is not helpful for scheduling..] 04/05/23 19:45:41.134 + STEP: removing the label node off the node ttneyla26-md-0-8474989c68-jf7bt 04/05/23 19:45:42.125 + STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.143 + STEP: removing the label node off the node ttneyla26-md-0-8474989c68-rj4zb 04/05/23 19:45:42.148 + STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.169 + STEP: removing the label node off the node ttneyla26-md-0-8474989c68-wbqh5 04/05/23 19:45:42.174 + STEP: verifying the node doesn't have the label node 04/05/23 19:45:42.199 + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:42.248: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-pred-5692" for this suite. 04/05/23 19:45:42.258 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-node] RuntimeClass + should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:104 +[BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:42.269 +Apr 5 19:45:42.269: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename runtimeclass 04/05/23 19:45:42.27 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.285 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.288 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 +[It] should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:104 +Apr 5 19:45:42.305: INFO: Waiting up to 1m20s for at least 1 pods in namespace runtimeclass-8515 to be scheduled +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:42.317: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 +STEP: Destroying namespace "runtimeclass-8515" for this suite. 04/05/23 19:45:42.325 +------------------------------ +• [0.063 seconds] +[sig-node] RuntimeClass +test/e2e/common/node/framework.go:23 + should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:104 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:42.269 + Apr 5 19:45:42.269: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename runtimeclass 04/05/23 19:45:42.27 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.285 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.288 + [BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 + [It] should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:104 + Apr 5 19:45:42.305: INFO: Waiting up to 1m20s for at least 1 pods in namespace runtimeclass-8515 to be scheduled + [AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:42.317: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 + STEP: Destroying namespace "runtimeclass-8515" for this suite. 04/05/23 19:45:42.325 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should apply a finalizer to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:394 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:42.341 +Apr 5 19:45:42.342: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 19:45:42.343 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.357 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.36 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should apply a finalizer to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:394 +STEP: Creating namespace "e2e-ns-cb7hv" 04/05/23 19:45:42.363 +Apr 5 19:45:42.377: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes"} +STEP: Adding e2e finalizer to namespace "e2e-ns-cb7hv-4376" 04/05/23 19:45:42.378 +Apr 5 19:45:42.386: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes", "e2e.example.com/fakeFinalizer"} +STEP: Removing e2e finalizer from namespace "e2e-ns-cb7hv-4376" 04/05/23 19:45:42.386 +Apr 5 19:45:42.394: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes"} +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:42.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-4778" for this suite. 04/05/23 19:45:42.399 +STEP: Destroying namespace "e2e-ns-cb7hv-4376" for this suite. 04/05/23 19:45:42.405 +------------------------------ +• [0.070 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should apply a finalizer to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:394 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:42.341 + Apr 5 19:45:42.342: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 19:45:42.343 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.357 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.36 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should apply a finalizer to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:394 + STEP: Creating namespace "e2e-ns-cb7hv" 04/05/23 19:45:42.363 + Apr 5 19:45:42.377: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes"} + STEP: Adding e2e finalizer to namespace "e2e-ns-cb7hv-4376" 04/05/23 19:45:42.378 + Apr 5 19:45:42.386: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes", "e2e.example.com/fakeFinalizer"} + STEP: Removing e2e finalizer from namespace "e2e-ns-cb7hv-4376" 04/05/23 19:45:42.386 + Apr 5 19:45:42.394: INFO: Namespace "e2e-ns-cb7hv-4376" has []v1.FinalizerName{"kubernetes"} + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:42.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-4778" for this suite. 04/05/23 19:45:42.399 + STEP: Destroying namespace "e2e-ns-cb7hv-4376" for this suite. 04/05/23 19:45:42.405 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-node] Sysctls [LinuxOnly] [NodeConformance] + should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:77 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:42.414 +Apr 5 19:45:42.414: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sysctl 04/05/23 19:45:42.415 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.431 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.433 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 +[It] should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:77 +STEP: Creating a pod with the kernel.shm_rmid_forced sysctl 04/05/23 19:45:42.436 +STEP: Watching for error events or started pod 04/05/23 19:45:42.444 +STEP: Waiting for pod completion 04/05/23 19:45:46.449 +Apr 5 19:45:46.449: INFO: Waiting up to 3m0s for pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5" in namespace "sysctl-5500" to be "completed" +Apr 5 19:45:46.453: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024416ms +Apr 5 19:45:48.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009027927s +Apr 5 19:45:50.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.009055054s +Apr 5 19:45:50.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5" satisfied condition "completed" +STEP: Checking that the pod succeeded 04/05/23 19:45:50.462 +STEP: Getting logs from the pod 04/05/23 19:45:50.462 +STEP: Checking that the sysctl is actually updated 04/05/23 19:45:50.47 +[AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:50.470: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "sysctl-5500" for this suite. 04/05/23 19:45:50.476 +------------------------------ +• [SLOW TEST] [8.069 seconds] +[sig-node] Sysctls [LinuxOnly] [NodeConformance] +test/e2e/common/node/framework.go:23 + should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:77 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:42.414 + Apr 5 19:45:42.414: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sysctl 04/05/23 19:45:42.415 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:42.431 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:42.433 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 + [It] should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/common/node/sysctl.go:77 + STEP: Creating a pod with the kernel.shm_rmid_forced sysctl 04/05/23 19:45:42.436 + STEP: Watching for error events or started pod 04/05/23 19:45:42.444 + STEP: Waiting for pod completion 04/05/23 19:45:46.449 + Apr 5 19:45:46.449: INFO: Waiting up to 3m0s for pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5" in namespace "sysctl-5500" to be "completed" + Apr 5 19:45:46.453: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024416ms + Apr 5 19:45:48.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009027927s + Apr 5 19:45:50.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.009055054s + Apr 5 19:45:50.458: INFO: Pod "sysctl-a939070a-8821-4eee-b970-0d55720af4b5" satisfied condition "completed" + STEP: Checking that the pod succeeded 04/05/23 19:45:50.462 + STEP: Getting logs from the pod 04/05/23 19:45:50.462 + STEP: Checking that the sysctl is actually updated 04/05/23 19:45:50.47 + [AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:50.470: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "sysctl-5500" for this suite. 04/05/23 19:45:50.476 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:167 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:50.488 +Apr 5 19:45:50.488: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 19:45:50.489 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:50.506 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:50.509 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:167 +STEP: Creating a pod to test emptydir 0644 on node default medium 04/05/23 19:45:50.512 +Apr 5 19:45:50.521: INFO: Waiting up to 5m0s for pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3" in namespace "emptydir-1566" to be "Succeeded or Failed" +Apr 5 19:45:50.527: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.255691ms +Apr 5 19:45:52.533: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011592198s +Apr 5 19:45:54.532: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010594026s +Apr 5 19:45:56.534: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.013077042s +Apr 5 19:45:58.534: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.013306743s +STEP: Saw pod success 04/05/23 19:45:58.534 +Apr 5 19:45:58.535: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3" satisfied condition "Succeeded or Failed" +Apr 5 19:45:58.538: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 container test-container: +STEP: delete the pod 04/05/23 19:45:58.545 +Apr 5 19:45:58.559: INFO: Waiting for pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 to disappear +Apr 5 19:45:58.563: INFO: Pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:58.564: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-1566" for this suite. 04/05/23 19:45:58.57 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:167 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:50.488 + Apr 5 19:45:50.488: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 19:45:50.489 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:50.506 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:50.509 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:167 + STEP: Creating a pod to test emptydir 0644 on node default medium 04/05/23 19:45:50.512 + Apr 5 19:45:50.521: INFO: Waiting up to 5m0s for pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3" in namespace "emptydir-1566" to be "Succeeded or Failed" + Apr 5 19:45:50.527: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.255691ms + Apr 5 19:45:52.533: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011592198s + Apr 5 19:45:54.532: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010594026s + Apr 5 19:45:56.534: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.013077042s + Apr 5 19:45:58.534: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.013306743s + STEP: Saw pod success 04/05/23 19:45:58.534 + Apr 5 19:45:58.535: INFO: Pod "pod-ad335c55-0595-4db2-9115-b04d047f26b3" satisfied condition "Succeeded or Failed" + Apr 5 19:45:58.538: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 container test-container: + STEP: delete the pod 04/05/23 19:45:58.545 + Apr 5 19:45:58.559: INFO: Waiting for pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 to disappear + Apr 5 19:45:58.563: INFO: Pod pod-ad335c55-0595-4db2-9115-b04d047f26b3 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:58.564: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-1566" for this suite. 04/05/23 19:45:58.57 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-instrumentation] Events + should delete a collection of events [Conformance] + test/e2e/instrumentation/core_events.go:175 +[BeforeEach] [sig-instrumentation] Events + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:58.579 +Apr 5 19:45:58.579: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename events 04/05/23 19:45:58.58 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:58.595 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:58.598 +[BeforeEach] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:31 +[It] should delete a collection of events [Conformance] + test/e2e/instrumentation/core_events.go:175 +STEP: Create set of events 04/05/23 19:45:58.601 +Apr 5 19:45:58.606: INFO: created test-event-1 +Apr 5 19:45:58.610: INFO: created test-event-2 +Apr 5 19:45:58.614: INFO: created test-event-3 +STEP: get a list of Events with a label in the current namespace 04/05/23 19:45:58.614 +STEP: delete collection of events 04/05/23 19:45:58.618 +Apr 5 19:45:58.618: INFO: requesting DeleteCollection of events +STEP: check that the list of events matches the requested quantity 04/05/23 19:45:58.638 +Apr 5 19:45:58.638: INFO: requesting list of events to confirm quantity +[AfterEach] [sig-instrumentation] Events + test/e2e/framework/node/init/init.go:32 +Apr 5 19:45:58.641: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-instrumentation] Events + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-instrumentation] Events + tear down framework | framework.go:193 +STEP: Destroying namespace "events-9540" for this suite. 04/05/23 19:45:58.648 +------------------------------ +• [0.077 seconds] +[sig-instrumentation] Events +test/e2e/instrumentation/common/framework.go:23 + should delete a collection of events [Conformance] + test/e2e/instrumentation/core_events.go:175 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-instrumentation] Events + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:58.579 + Apr 5 19:45:58.579: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename events 04/05/23 19:45:58.58 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:58.595 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:58.598 + [BeforeEach] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:31 + [It] should delete a collection of events [Conformance] + test/e2e/instrumentation/core_events.go:175 + STEP: Create set of events 04/05/23 19:45:58.601 + Apr 5 19:45:58.606: INFO: created test-event-1 + Apr 5 19:45:58.610: INFO: created test-event-2 + Apr 5 19:45:58.614: INFO: created test-event-3 + STEP: get a list of Events with a label in the current namespace 04/05/23 19:45:58.614 + STEP: delete collection of events 04/05/23 19:45:58.618 + Apr 5 19:45:58.618: INFO: requesting DeleteCollection of events + STEP: check that the list of events matches the requested quantity 04/05/23 19:45:58.638 + Apr 5 19:45:58.638: INFO: requesting list of events to confirm quantity + [AfterEach] [sig-instrumentation] Events + test/e2e/framework/node/init/init.go:32 + Apr 5 19:45:58.641: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-instrumentation] Events + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-instrumentation] Events + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-instrumentation] Events + tear down framework | framework.go:193 + STEP: Destroying namespace "events-9540" for this suite. 04/05/23 19:45:58.648 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:68 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:45:58.661 +Apr 5 19:45:58.661: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:45:58.662 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:58.675 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:58.678 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:68 +STEP: Creating a pod to test downward API volume plugin 04/05/23 19:45:58.68 +Apr 5 19:45:58.689: INFO: Waiting up to 5m0s for pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd" in namespace "downward-api-7218" to be "Succeeded or Failed" +Apr 5 19:45:58.694: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.53416ms +Apr 5 19:46:00.698: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009131341s +Apr 5 19:46:02.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00940031s +Apr 5 19:46:04.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010108761s +Apr 5 19:46:06.698: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009103217s +STEP: Saw pod success 04/05/23 19:46:06.698 +Apr 5 19:46:06.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd" satisfied condition "Succeeded or Failed" +Apr 5 19:46:06.701: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd container client-container: +STEP: delete the pod 04/05/23 19:46:06.709 +Apr 5 19:46:06.723: INFO: Waiting for pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd to disappear +Apr 5 19:46:06.726: INFO: Pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 19:46:06.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-7218" for this suite. 04/05/23 19:46:06.732 +------------------------------ +• [SLOW TEST] [8.077 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:68 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:45:58.661 + Apr 5 19:45:58.661: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:45:58.662 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:45:58.675 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:45:58.678 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:68 + STEP: Creating a pod to test downward API volume plugin 04/05/23 19:45:58.68 + Apr 5 19:45:58.689: INFO: Waiting up to 5m0s for pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd" in namespace "downward-api-7218" to be "Succeeded or Failed" + Apr 5 19:45:58.694: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.53416ms + Apr 5 19:46:00.698: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009131341s + Apr 5 19:46:02.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00940031s + Apr 5 19:46:04.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010108761s + Apr 5 19:46:06.698: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009103217s + STEP: Saw pod success 04/05/23 19:46:06.698 + Apr 5 19:46:06.699: INFO: Pod "downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd" satisfied condition "Succeeded or Failed" + Apr 5 19:46:06.701: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd container client-container: + STEP: delete the pod 04/05/23 19:46:06.709 + Apr 5 19:46:06.723: INFO: Waiting for pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd to disappear + Apr 5 19:46:06.726: INFO: Pod downwardapi-volume-c1c471c6-fbca-48d9-991e-0efe536fbcdd no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 19:46:06.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-7218" for this suite. 04/05/23 19:46:06.732 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/apps/cronjob.go:96 +[BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:46:06.744 +Apr 5 19:46:06.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename cronjob 04/05/23 19:46:06.745 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:46:06.761 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:46:06.764 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 +[It] should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/apps/cronjob.go:96 +STEP: Creating a suspended cronjob 04/05/23 19:46:06.767 +STEP: Ensuring no jobs are scheduled 04/05/23 19:46:06.772 +STEP: Ensuring no job exists by listing jobs explicitly 04/05/23 19:51:06.781 +STEP: Removing cronjob 04/05/23 19:51:06.785 +[AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 +Apr 5 19:51:06.791: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 +STEP: Destroying namespace "cronjob-9582" for this suite. 04/05/23 19:51:06.797 +------------------------------ +• [SLOW TEST] [300.060 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/apps/cronjob.go:96 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:46:06.744 + Apr 5 19:46:06.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename cronjob 04/05/23 19:46:06.745 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:46:06.761 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:46:06.764 + [BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 + [It] should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/apps/cronjob.go:96 + STEP: Creating a suspended cronjob 04/05/23 19:46:06.767 + STEP: Ensuring no jobs are scheduled 04/05/23 19:46:06.772 + STEP: Ensuring no job exists by listing jobs explicitly 04/05/23 19:51:06.781 + STEP: Removing cronjob 04/05/23 19:51:06.785 + [AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 + Apr 5 19:51:06.791: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 + STEP: Destroying namespace "cronjob-9582" for this suite. 04/05/23 19:51:06.797 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/apps/rc.go:83 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:51:06.804 +Apr 5 19:51:06.804: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 19:51:06.805 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:06.821 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:06.824 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/apps/rc.go:83 +Apr 5 19:51:06.827: 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 04/05/23 19:51:07.838 +STEP: Checking rc "condition-test" has the desired failure condition set 04/05/23 19:51:07.843 +STEP: Scaling down rc "condition-test" to satisfy pod quota 04/05/23 19:51:08.852 +Apr 5 19:51:08.861: INFO: Updating replication controller "condition-test" +STEP: Checking rc "condition-test" has no failure condition set 04/05/23 19:51:08.861 +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 19:51:09.870: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-502" for this suite. 04/05/23 19:51:09.878 +------------------------------ +• [3.081 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/apps/rc.go:83 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:51:06.804 + Apr 5 19:51:06.804: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 19:51:06.805 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:06.821 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:06.824 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/apps/rc.go:83 + Apr 5 19:51:06.827: 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 04/05/23 19:51:07.838 + STEP: Checking rc "condition-test" has the desired failure condition set 04/05/23 19:51:07.843 + STEP: Scaling down rc "condition-test" to satisfy pod quota 04/05/23 19:51:08.852 + Apr 5 19:51:08.861: INFO: Updating replication controller "condition-test" + STEP: Checking rc "condition-test" has no failure condition set 04/05/23 19:51:08.861 + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 19:51:09.870: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-502" for this suite. 04/05/23 19:51:09.878 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:79 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:51:09.925 +Apr 5 19:51:09.925: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:51:09.926 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:09.944 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:09.947 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:79 +STEP: Creating secret with name secret-test-map-fd261a60-2203-41b6-b926-223e6b8fc9a8 04/05/23 19:51:09.951 +STEP: Creating a pod to test consume secrets 04/05/23 19:51:09.955 +Apr 5 19:51:09.964: INFO: Waiting up to 5m0s for pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda" in namespace "secrets-7758" to be "Succeeded or Failed" +Apr 5 19:51:09.967: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 2.668616ms +Apr 5 19:51:11.972: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007357148s +Apr 5 19:51:13.972: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007778142s +Apr 5 19:51:15.973: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Running", Reason="", readiness=false. Elapsed: 6.008193037s +Apr 5 19:51:17.973: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008878633s +STEP: Saw pod success 04/05/23 19:51:17.973 +Apr 5 19:51:17.974: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda" satisfied condition "Succeeded or Failed" +Apr 5 19:51:17.977: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda container secret-volume-test: +STEP: delete the pod 04/05/23 19:51:17.994 +Apr 5 19:51:18.006: INFO: Waiting for pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda to disappear +Apr 5 19:51:18.012: INFO: Pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:51:18.012: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-7758" for this suite. 04/05/23 19:51:18.019 +------------------------------ +• [SLOW TEST] [8.102 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:79 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:51:09.925 + Apr 5 19:51:09.925: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:51:09.926 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:09.944 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:09.947 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:79 + STEP: Creating secret with name secret-test-map-fd261a60-2203-41b6-b926-223e6b8fc9a8 04/05/23 19:51:09.951 + STEP: Creating a pod to test consume secrets 04/05/23 19:51:09.955 + Apr 5 19:51:09.964: INFO: Waiting up to 5m0s for pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda" in namespace "secrets-7758" to be "Succeeded or Failed" + Apr 5 19:51:09.967: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 2.668616ms + Apr 5 19:51:11.972: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007357148s + Apr 5 19:51:13.972: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007778142s + Apr 5 19:51:15.973: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Running", Reason="", readiness=false. Elapsed: 6.008193037s + Apr 5 19:51:17.973: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008878633s + STEP: Saw pod success 04/05/23 19:51:17.973 + Apr 5 19:51:17.974: INFO: Pod "pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda" satisfied condition "Succeeded or Failed" + Apr 5 19:51:17.977: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda container secret-volume-test: + STEP: delete the pod 04/05/23 19:51:17.994 + Apr 5 19:51:18.006: INFO: Waiting for pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda to disappear + Apr 5 19:51:18.012: INFO: Pod pod-secrets-d35eaaf6-67a7-421e-bfce-91eb42acbeda no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:51:18.012: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-7758" for this suite. 04/05/23 19:51:18.019 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:93 +[BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:51:18.031 +Apr 5 19:51:18.031: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:51:18.032 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:18.048 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:18.051 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:93 +STEP: Creating configMap configmap-7308/configmap-test-c98932e3-7c09-4ff7-b3a0-a1fa86f081eb 04/05/23 19:51:18.054 +STEP: Creating a pod to test consume configMaps 04/05/23 19:51:18.06 +Apr 5 19:51:18.080: INFO: Waiting up to 5m0s for pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5" in namespace "configmap-7308" to be "Succeeded or Failed" +Apr 5 19:51:18.085: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 5.051856ms +Apr 5 19:51:20.089: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008706735s +Apr 5 19:51:22.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009402225s +Apr 5 19:51:24.091: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010719768s +Apr 5 19:51:26.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009694569s +STEP: Saw pod success 04/05/23 19:51:26.09 +Apr 5 19:51:26.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5" satisfied condition "Succeeded or Failed" +Apr 5 19:51:26.094: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 container env-test: +STEP: delete the pod 04/05/23 19:51:26.1 +Apr 5 19:51:26.113: INFO: Waiting for pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 to disappear +Apr 5 19:51:26.116: INFO: Pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 no longer exists +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:51:26.117: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-7308" for this suite. 04/05/23 19:51:26.121 +------------------------------ +• [SLOW TEST] [8.096 seconds] +[sig-node] ConfigMap +test/e2e/common/node/framework.go:23 + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:93 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:51:18.031 + Apr 5 19:51:18.031: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:51:18.032 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:18.048 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:18.051 + [BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:93 + STEP: Creating configMap configmap-7308/configmap-test-c98932e3-7c09-4ff7-b3a0-a1fa86f081eb 04/05/23 19:51:18.054 + STEP: Creating a pod to test consume configMaps 04/05/23 19:51:18.06 + Apr 5 19:51:18.080: INFO: Waiting up to 5m0s for pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5" in namespace "configmap-7308" to be "Succeeded or Failed" + Apr 5 19:51:18.085: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 5.051856ms + Apr 5 19:51:20.089: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008706735s + Apr 5 19:51:22.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009402225s + Apr 5 19:51:24.091: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010719768s + Apr 5 19:51:26.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009694569s + STEP: Saw pod success 04/05/23 19:51:26.09 + Apr 5 19:51:26.090: INFO: Pod "pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5" satisfied condition "Succeeded or Failed" + Apr 5 19:51:26.094: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 container env-test: + STEP: delete the pod 04/05/23 19:51:26.1 + Apr 5 19:51:26.113: INFO: Waiting for pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 to disappear + Apr 5 19:51:26.116: INFO: Pod pod-configmaps-1018599f-0bb1-44bc-8809-c2d1a22630c5 no longer exists + [AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:51:26.117: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-7308" for this suite. 04/05/23 19:51:26.121 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:134 +[BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:51:26.132 +Apr 5 19:51:26.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:51:26.133 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:26.149 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:26.153 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 +STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:51:26.163 +Apr 5 19:51:26.172: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-7015" to be "running and ready" +Apr 5 19:51:26.185: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 13.161333ms +Apr 5 19:51:26.186: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:51:28.191: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.019145354s +Apr 5 19:51:28.191: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:51:30.190: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018678713s +Apr 5 19:51:30.191: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:51:32.191: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.019135834s +Apr 5 19:51:32.192: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) +Apr 5 19:51:32.192: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" +[It] should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:134 +STEP: create the pod with lifecycle hook 04/05/23 19:51:32.196 +Apr 5 19:51:32.202: INFO: Waiting up to 5m0s for pod "pod-with-poststart-exec-hook" in namespace "container-lifecycle-hook-7015" to be "running and ready" +Apr 5 19:51:32.209: INFO: Pod "pod-with-poststart-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 6.418167ms +Apr 5 19:51:32.209: INFO: The phase of Pod pod-with-poststart-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:51:34.213: INFO: Pod "pod-with-poststart-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011011448s +Apr 5 19:51:34.213: INFO: The phase of Pod pod-with-poststart-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:51:36.214: INFO: Pod "pod-with-poststart-exec-hook": Phase="Running", Reason="", readiness=true. Elapsed: 4.011305545s +Apr 5 19:51:36.214: INFO: The phase of Pod pod-with-poststart-exec-hook is Running (Ready = true) +Apr 5 19:51:36.214: INFO: Pod "pod-with-poststart-exec-hook" satisfied condition "running and ready" +STEP: check poststart hook 04/05/23 19:51:36.217 +STEP: delete the pod with lifecycle hook 04/05/23 19:51:36.225 +Apr 5 19:51:36.233: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Apr 5 19:51:36.236: INFO: Pod pod-with-poststart-exec-hook still exists +Apr 5 19:51:38.236: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Apr 5 19:51:38.243: INFO: Pod pod-with-poststart-exec-hook still exists +Apr 5 19:51:40.236: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Apr 5 19:51:40.241: INFO: Pod pod-with-poststart-exec-hook no longer exists +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 +Apr 5 19:51:40.241: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 +STEP: Destroying namespace "container-lifecycle-hook-7015" for this suite. 04/05/23 19:51:40.246 +------------------------------ +• [SLOW TEST] [14.121 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/common/node/lifecycle_hook.go:134 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:51:26.132 + Apr 5 19:51:26.132: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:51:26.133 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:26.149 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:26.153 + [BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 + STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:51:26.163 + Apr 5 19:51:26.172: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-7015" to be "running and ready" + Apr 5 19:51:26.185: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 13.161333ms + Apr 5 19:51:26.186: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:51:28.191: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.019145354s + Apr 5 19:51:28.191: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:51:30.190: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018678713s + Apr 5 19:51:30.191: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:51:32.191: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.019135834s + Apr 5 19:51:32.192: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) + Apr 5 19:51:32.192: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" + [It] should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:134 + STEP: create the pod with lifecycle hook 04/05/23 19:51:32.196 + Apr 5 19:51:32.202: INFO: Waiting up to 5m0s for pod "pod-with-poststart-exec-hook" in namespace "container-lifecycle-hook-7015" to be "running and ready" + Apr 5 19:51:32.209: INFO: Pod "pod-with-poststart-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 6.418167ms + Apr 5 19:51:32.209: INFO: The phase of Pod pod-with-poststart-exec-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:51:34.213: INFO: Pod "pod-with-poststart-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011011448s + Apr 5 19:51:34.213: INFO: The phase of Pod pod-with-poststart-exec-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:51:36.214: INFO: Pod "pod-with-poststart-exec-hook": Phase="Running", Reason="", readiness=true. Elapsed: 4.011305545s + Apr 5 19:51:36.214: INFO: The phase of Pod pod-with-poststart-exec-hook is Running (Ready = true) + Apr 5 19:51:36.214: INFO: Pod "pod-with-poststart-exec-hook" satisfied condition "running and ready" + STEP: check poststart hook 04/05/23 19:51:36.217 + STEP: delete the pod with lifecycle hook 04/05/23 19:51:36.225 + Apr 5 19:51:36.233: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear + Apr 5 19:51:36.236: INFO: Pod pod-with-poststart-exec-hook still exists + Apr 5 19:51:38.236: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear + Apr 5 19:51:38.243: INFO: Pod pod-with-poststart-exec-hook still exists + Apr 5 19:51:40.236: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear + Apr 5 19:51:40.241: INFO: Pod pod-with-poststart-exec-hook no longer exists + [AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 + Apr 5 19:51:40.241: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 + STEP: Destroying namespace "container-lifecycle-hook-7015" for this suite. 04/05/23 19:51:40.246 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/auth/service_accounts.go:531 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:51:40.256 +Apr 5 19:51:40.256: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:51:40.258 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:40.272 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:40.274 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/auth/service_accounts.go:531 +Apr 5 19:51:40.291: INFO: created pod +Apr 5 19:51:40.291: INFO: Waiting up to 5m0s for pod "oidc-discovery-validator" in namespace "svcaccounts-6095" to be "Succeeded or Failed" +Apr 5 19:51:40.294: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 3.205821ms +Apr 5 19:51:42.305: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014670761s +Apr 5 19:51:44.300: INFO: Pod "oidc-discovery-validator": Phase="Running", Reason="", readiness=true. Elapsed: 4.009541324s +Apr 5 19:51:46.299: INFO: Pod "oidc-discovery-validator": Phase="Running", Reason="", readiness=false. Elapsed: 6.008679194s +Apr 5 19:51:48.299: INFO: Pod "oidc-discovery-validator": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007974964s +STEP: Saw pod success 04/05/23 19:51:48.299 +Apr 5 19:51:48.299: INFO: Pod "oidc-discovery-validator" satisfied condition "Succeeded or Failed" +Apr 5 19:52:18.299: INFO: polling logs +Apr 5 19:52:18.311: INFO: Pod logs: +I0405 19:51:44.148152 1 log.go:198] OK: Got token +I0405 19:51:44.148207 1 log.go:198] validating with in-cluster discovery +I0405 19:51:44.149399 1 log.go:198] OK: got issuer https://kubernetes.default.svc.cluster.local +I0405 19:51:44.149458 1 log.go:198] Full, not-validated claims: +openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://kubernetes.default.svc.cluster.local", Subject:"system:serviceaccount:svcaccounts-6095:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1680724900, NotBefore:1680724300, IssuedAt:1680724300, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-6095", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"a337442d-214d-431f-bf63-1192e910dfb0"}}} +I0405 19:51:44.172892 1 log.go:198] OK: Constructed OIDC provider for issuer https://kubernetes.default.svc.cluster.local +I0405 19:51:44.179021 1 log.go:198] OK: Validated signature on JWT +I0405 19:51:44.179111 1 log.go:198] OK: Got valid claims from token! +I0405 19:51:44.179141 1 log.go:198] Full, validated claims: +&openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://kubernetes.default.svc.cluster.local", Subject:"system:serviceaccount:svcaccounts-6095:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1680724900, NotBefore:1680724300, IssuedAt:1680724300, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-6095", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"a337442d-214d-431f-bf63-1192e910dfb0"}}} + +Apr 5 19:52:18.311: INFO: completed pod +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:18.319: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-6095" for this suite. 04/05/23 19:52:18.324 +------------------------------ +• [SLOW TEST] [38.074 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/auth/service_accounts.go:531 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:51:40.256 + Apr 5 19:51:40.256: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:51:40.258 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:51:40.272 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:51:40.274 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/auth/service_accounts.go:531 + Apr 5 19:51:40.291: INFO: created pod + Apr 5 19:51:40.291: INFO: Waiting up to 5m0s for pod "oidc-discovery-validator" in namespace "svcaccounts-6095" to be "Succeeded or Failed" + Apr 5 19:51:40.294: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 3.205821ms + Apr 5 19:51:42.305: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014670761s + Apr 5 19:51:44.300: INFO: Pod "oidc-discovery-validator": Phase="Running", Reason="", readiness=true. Elapsed: 4.009541324s + Apr 5 19:51:46.299: INFO: Pod "oidc-discovery-validator": Phase="Running", Reason="", readiness=false. Elapsed: 6.008679194s + Apr 5 19:51:48.299: INFO: Pod "oidc-discovery-validator": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007974964s + STEP: Saw pod success 04/05/23 19:51:48.299 + Apr 5 19:51:48.299: INFO: Pod "oidc-discovery-validator" satisfied condition "Succeeded or Failed" + Apr 5 19:52:18.299: INFO: polling logs + Apr 5 19:52:18.311: INFO: Pod logs: + I0405 19:51:44.148152 1 log.go:198] OK: Got token + I0405 19:51:44.148207 1 log.go:198] validating with in-cluster discovery + I0405 19:51:44.149399 1 log.go:198] OK: got issuer https://kubernetes.default.svc.cluster.local + I0405 19:51:44.149458 1 log.go:198] Full, not-validated claims: + openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://kubernetes.default.svc.cluster.local", Subject:"system:serviceaccount:svcaccounts-6095:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1680724900, NotBefore:1680724300, IssuedAt:1680724300, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-6095", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"a337442d-214d-431f-bf63-1192e910dfb0"}}} + I0405 19:51:44.172892 1 log.go:198] OK: Constructed OIDC provider for issuer https://kubernetes.default.svc.cluster.local + I0405 19:51:44.179021 1 log.go:198] OK: Validated signature on JWT + I0405 19:51:44.179111 1 log.go:198] OK: Got valid claims from token! + I0405 19:51:44.179141 1 log.go:198] Full, validated claims: + &openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://kubernetes.default.svc.cluster.local", Subject:"system:serviceaccount:svcaccounts-6095:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1680724900, NotBefore:1680724300, IssuedAt:1680724300, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-6095", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"a337442d-214d-431f-bf63-1192e910dfb0"}}} + + Apr 5 19:52:18.311: INFO: completed pod + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:18.319: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-6095" for this suite. 04/05/23 19:52:18.324 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Secrets + should patch a secret [Conformance] + test/e2e/common/node/secrets.go:154 +[BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:18.341 +Apr 5 19:52:18.341: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:52:18.342 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:18.358 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:18.361 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should patch a secret [Conformance] + test/e2e/common/node/secrets.go:154 +STEP: creating a secret 04/05/23 19:52:18.364 +STEP: listing secrets in all namespaces to ensure that there are more than zero 04/05/23 19:52:18.37 +STEP: patching the secret 04/05/23 19:52:18.423 +STEP: deleting the secret using a LabelSelector 04/05/23 19:52:18.435 +STEP: listing secrets in all namespaces, searching for label name and value in patch 04/05/23 19:52:18.443 +[AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:18.494: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-5779" for this suite. 04/05/23 19:52:18.499 +------------------------------ +• [0.166 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should patch a secret [Conformance] + test/e2e/common/node/secrets.go:154 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:18.341 + Apr 5 19:52:18.341: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:52:18.342 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:18.358 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:18.361 + [BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should patch a secret [Conformance] + test/e2e/common/node/secrets.go:154 + STEP: creating a secret 04/05/23 19:52:18.364 + STEP: listing secrets in all namespaces to ensure that there are more than zero 04/05/23 19:52:18.37 + STEP: patching the secret 04/05/23 19:52:18.423 + STEP: deleting the secret using a LabelSelector 04/05/23 19:52:18.435 + STEP: listing secrets in all namespaces, searching for label name and value in patch 04/05/23 19:52:18.443 + [AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:18.494: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-5779" for this suite. 04/05/23 19:52:18.499 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-apps] Deployment + Deployment should have a working scale subresource [Conformance] + test/e2e/apps/deployment.go:150 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:18.508 +Apr 5 19:52:18.508: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 19:52:18.509 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:18.523 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:18.526 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] Deployment should have a working scale subresource [Conformance] + test/e2e/apps/deployment.go:150 +Apr 5 19:52:18.529: INFO: Creating simple deployment test-new-deployment +Apr 5 19:52:18.547: INFO: deployment "test-new-deployment" doesn't have the required revision set +Apr 5 19:52:20.559: 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(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-new-deployment-7f5969cbc7\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:52:22.564: 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(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-new-deployment-7f5969cbc7\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: getting scale subresource 04/05/23 19:52:24.567 +STEP: updating a scale subresource 04/05/23 19:52:24.57 +STEP: verifying the deployment Spec.Replicas was modified 04/05/23 19:52:24.576 +STEP: Patch a scale subresource 04/05/23 19:52:24.58 +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 19:52:24.601: INFO: Deployment "test-new-deployment": +&Deployment{ObjectMeta:{test-new-deployment deployment-8484 e1fcf23e-d570-43ad-aadc-0e92e75bdbd3 125441 3 2023-04-05 19:52:18 +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 2023-04-05 19:52:18 +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 2023-04-05 19:52:23 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0083ca318 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:2023-04-05 19:52:23 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-new-deployment-7f5969cbc7" has successfully progressed.,LastUpdateTime:2023-04-05 19:52:23 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Apr 5 19:52:24.609: INFO: New ReplicaSet "test-new-deployment-7f5969cbc7" of Deployment "test-new-deployment": +&ReplicaSet{ObjectMeta:{test-new-deployment-7f5969cbc7 deployment-8484 041ad0df-fa60-48b0-9019-311d3895f148 125445 3 2023-04-05 19:52:18 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[deployment.kubernetes.io/desired-replicas:4 deployment.kubernetes.io/max-replicas:5 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-new-deployment e1fcf23e-d570-43ad-aadc-0e92e75bdbd3 0xc007541157 0xc007541158}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:52:23 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status} {kube-controller-manager Update apps/v1 2023-04-05 19:52: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:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"e1fcf23e-d570-43ad-aadc-0e92e75bdbd3\"}":{}}},"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":{}}}}} }]},Spec:ReplicaSetSpec{Replicas:*4,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,pod-template-hash: 7f5969cbc7,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0075411e8 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{},},} +Apr 5 19:52:24.622: INFO: Pod "test-new-deployment-7f5969cbc7-6bv6d" is not available: +&Pod{ObjectMeta:{test-new-deployment-7f5969cbc7-6bv6d test-new-deployment-7f5969cbc7- deployment-8484 706cbf8e-6a94-46c1-8ebc-688cf2d42e65 125446 0 2023-04-05 19:52:24 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet test-new-deployment-7f5969cbc7 041ad0df-fa60-48b0-9019-311d3895f148 0xc0075419c7 0xc0075419c8}] [] [{kube-controller-manager Update v1 2023-04-05 19:52:24 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"041ad0df-fa60-48b0-9019-311d3895f148\"}":{}}},"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-b2z7b,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-b2z7b,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:24 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 19:52:24.622: INFO: Pod "test-new-deployment-7f5969cbc7-ms65g" is available: +&Pod{ObjectMeta:{test-new-deployment-7f5969cbc7-ms65g test-new-deployment-7f5969cbc7- deployment-8484 6a5e13cf-2f36-4732-a61e-1f809d90fd80 125411 0 2023-04-05 19:52:18 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet test-new-deployment-7f5969cbc7 041ad0df-fa60-48b0-9019-311d3895f148 0xc007541b20 0xc007541b21}] [] [{kube-controller-manager Update v1 2023-04-05 19:52:18 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"041ad0df-fa60-48b0-9019-311d3895f148\"}":{}}},"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 2023-04-05 19:52: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\":\"192.168.3.244\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-46zfr,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-46zfr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.244,StartTime:2023-04-05 19:52:18 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:52:22 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://f40022720328101bcf407b9e416f9ffecbc0d64cb62940e76618e83d31bed8d6,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.244,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:24.622: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-8484" for this suite. 04/05/23 19:52:24.63 +------------------------------ +• [SLOW TEST] [6.132 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + Deployment should have a working scale subresource [Conformance] + test/e2e/apps/deployment.go:150 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:18.508 + Apr 5 19:52:18.508: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 19:52:18.509 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:18.523 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:18.526 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] Deployment should have a working scale subresource [Conformance] + test/e2e/apps/deployment.go:150 + Apr 5 19:52:18.529: INFO: Creating simple deployment test-new-deployment + Apr 5 19:52:18.547: INFO: deployment "test-new-deployment" doesn't have the required revision set + Apr 5 19:52:20.559: 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(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-new-deployment-7f5969cbc7\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:52:22.564: 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(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 18, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-new-deployment-7f5969cbc7\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: getting scale subresource 04/05/23 19:52:24.567 + STEP: updating a scale subresource 04/05/23 19:52:24.57 + STEP: verifying the deployment Spec.Replicas was modified 04/05/23 19:52:24.576 + STEP: Patch a scale subresource 04/05/23 19:52:24.58 + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 19:52:24.601: INFO: Deployment "test-new-deployment": + &Deployment{ObjectMeta:{test-new-deployment deployment-8484 e1fcf23e-d570-43ad-aadc-0e92e75bdbd3 125441 3 2023-04-05 19:52:18 +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 2023-04-05 19:52:18 +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 2023-04-05 19:52:23 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0083ca318 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:2023-04-05 19:52:23 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-new-deployment-7f5969cbc7" has successfully progressed.,LastUpdateTime:2023-04-05 19:52:23 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + + Apr 5 19:52:24.609: INFO: New ReplicaSet "test-new-deployment-7f5969cbc7" of Deployment "test-new-deployment": + &ReplicaSet{ObjectMeta:{test-new-deployment-7f5969cbc7 deployment-8484 041ad0df-fa60-48b0-9019-311d3895f148 125445 3 2023-04-05 19:52:18 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[deployment.kubernetes.io/desired-replicas:4 deployment.kubernetes.io/max-replicas:5 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-new-deployment e1fcf23e-d570-43ad-aadc-0e92e75bdbd3 0xc007541157 0xc007541158}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:52:23 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status} {kube-controller-manager Update apps/v1 2023-04-05 19:52: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:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"e1fcf23e-d570-43ad-aadc-0e92e75bdbd3\"}":{}}},"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":{}}}}} }]},Spec:ReplicaSetSpec{Replicas:*4,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,pod-template-hash: 7f5969cbc7,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [] [] []} {[] [] [{httpd registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc0075411e8 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{},},} + Apr 5 19:52:24.622: INFO: Pod "test-new-deployment-7f5969cbc7-6bv6d" is not available: + &Pod{ObjectMeta:{test-new-deployment-7f5969cbc7-6bv6d test-new-deployment-7f5969cbc7- deployment-8484 706cbf8e-6a94-46c1-8ebc-688cf2d42e65 125446 0 2023-04-05 19:52:24 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet test-new-deployment-7f5969cbc7 041ad0df-fa60-48b0-9019-311d3895f148 0xc0075419c7 0xc0075419c8}] [] [{kube-controller-manager Update v1 2023-04-05 19:52:24 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"041ad0df-fa60-48b0-9019-311d3895f148\"}":{}}},"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-b2z7b,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-b2z7b,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:24 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 19:52:24.622: INFO: Pod "test-new-deployment-7f5969cbc7-ms65g" is available: + &Pod{ObjectMeta:{test-new-deployment-7f5969cbc7-ms65g test-new-deployment-7f5969cbc7- deployment-8484 6a5e13cf-2f36-4732-a61e-1f809d90fd80 125411 0 2023-04-05 19:52:18 +0000 UTC map[name:httpd pod-template-hash:7f5969cbc7] map[] [{apps/v1 ReplicaSet test-new-deployment-7f5969cbc7 041ad0df-fa60-48b0-9019-311d3895f148 0xc007541b20 0xc007541b21}] [] [{kube-controller-manager Update v1 2023-04-05 19:52:18 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"041ad0df-fa60-48b0-9019-311d3895f148\"}":{}}},"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 2023-04-05 19:52: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\":\"192.168.3.244\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-46zfr,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-46zfr,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:52:18 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.244,StartTime:2023-04-05 19:52:18 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:52:22 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://f40022720328101bcf407b9e416f9ffecbc0d64cb62940e76618e83d31bed8d6,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.244,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:24.622: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-8484" for this suite. 04/05/23 19:52:24.63 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:47 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:24.652 +Apr 5 19:52:24.652: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 19:52:24.653 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:24.676 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:24.679 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:47 +STEP: Creating secret with name secret-test-7d6ddc2b-eaae-41d7-aeff-cd60fd467e92 04/05/23 19:52:24.681 +STEP: Creating a pod to test consume secrets 04/05/23 19:52:24.686 +Apr 5 19:52:24.694: INFO: Waiting up to 5m0s for pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934" in namespace "secrets-2459" to be "Succeeded or Failed" +Apr 5 19:52:24.697: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 3.542983ms +Apr 5 19:52:26.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00772739s +Apr 5 19:52:28.703: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009156444s +Apr 5 19:52:30.703: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009228175s +Apr 5 19:52:32.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008073525s +STEP: Saw pod success 04/05/23 19:52:32.702 +Apr 5 19:52:32.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934" satisfied condition "Succeeded or Failed" +Apr 5 19:52:32.706: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 container secret-volume-test: +STEP: delete the pod 04/05/23 19:52:32.713 +Apr 5 19:52:32.724: INFO: Waiting for pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 to disappear +Apr 5 19:52:32.726: INFO: Pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:32.727: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-2459" for this suite. 04/05/23 19:52:32.734 +------------------------------ +• [SLOW TEST] [8.089 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:47 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:24.652 + Apr 5 19:52:24.652: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 19:52:24.653 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:24.676 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:24.679 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:47 + STEP: Creating secret with name secret-test-7d6ddc2b-eaae-41d7-aeff-cd60fd467e92 04/05/23 19:52:24.681 + STEP: Creating a pod to test consume secrets 04/05/23 19:52:24.686 + Apr 5 19:52:24.694: INFO: Waiting up to 5m0s for pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934" in namespace "secrets-2459" to be "Succeeded or Failed" + Apr 5 19:52:24.697: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 3.542983ms + Apr 5 19:52:26.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00772739s + Apr 5 19:52:28.703: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009156444s + Apr 5 19:52:30.703: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009228175s + Apr 5 19:52:32.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008073525s + STEP: Saw pod success 04/05/23 19:52:32.702 + Apr 5 19:52:32.702: INFO: Pod "pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934" satisfied condition "Succeeded or Failed" + Apr 5 19:52:32.706: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 container secret-volume-test: + STEP: delete the pod 04/05/23 19:52:32.713 + Apr 5 19:52:32.724: INFO: Waiting for pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 to disappear + Apr 5 19:52:32.726: INFO: Pod pod-secrets-f066bcfc-0dd5-4458-baea-73de65f94934 no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:32.727: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-2459" for this suite. 04/05/23 19:52:32.734 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-node] Containers + should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:39 +[BeforeEach] [sig-node] Containers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:32.747 +Apr 5 19:52:32.747: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename containers 04/05/23 19:52:32.748 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:32.764 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:32.767 +[BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 +[It] should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:39 +Apr 5 19:52:32.781: INFO: Waiting up to 5m0s for pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4" in namespace "containers-7009" to be "running" +Apr 5 19:52:32.786: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.614514ms +Apr 5 19:52:34.792: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010355508s +Apr 5 19:52:36.790: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008890147s +Apr 5 19:52:38.791: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Running", Reason="", readiness=true. Elapsed: 6.009260056s +Apr 5 19:52:38.791: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4" satisfied condition "running" +[AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:38.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 +STEP: Destroying namespace "containers-7009" for this suite. 04/05/23 19:52:38.804 +------------------------------ +• [SLOW TEST] [6.065 seconds] +[sig-node] Containers +test/e2e/common/node/framework.go:23 + should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:39 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Containers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:32.747 + Apr 5 19:52:32.747: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename containers 04/05/23 19:52:32.748 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:32.764 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:32.767 + [BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 + [It] should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:39 + Apr 5 19:52:32.781: INFO: Waiting up to 5m0s for pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4" in namespace "containers-7009" to be "running" + Apr 5 19:52:32.786: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.614514ms + Apr 5 19:52:34.792: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010355508s + Apr 5 19:52:36.790: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008890147s + Apr 5 19:52:38.791: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4": Phase="Running", Reason="", readiness=true. Elapsed: 6.009260056s + Apr 5 19:52:38.791: INFO: Pod "client-containers-153dc66c-391c-4b02-8099-9d20266d9fa4" satisfied condition "running" + [AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:38.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 + STEP: Destroying namespace "containers-7009" for this suite. 04/05/23 19:52:38.804 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + should be able to convert from CR v1 to CR v2 [Conformance] + test/e2e/apimachinery/crd_conversion_webhook.go:149 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:38.817 +Apr 5 19:52:38.817: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-webhook 04/05/23 19:52:38.818 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:38.833 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:38.836 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 +STEP: Setting up server cert 04/05/23 19:52:38.838 +STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication 04/05/23 19:52:39.394 +STEP: Deploying the custom resource conversion webhook pod 04/05/23 19:52:39.404 +STEP: Wait for the deployment to be ready 04/05/23 19:52:39.417 +Apr 5 19:52:39.429: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set +Apr 5 19:52:41.441: 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(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:52:43.446: 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(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:52:45.445 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:52:45.462 +Apr 5 19:52:46.463: 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/apimachinery/crd_conversion_webhook.go:149 +Apr 5 19:52:46.467: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Creating a v1 custom resource 04/05/23 19:52:49.061 +STEP: v2 custom resource should be converted 04/05/23 19:52:49.066 +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:49.590: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-webhook-7662" for this suite. 04/05/23 19:52:49.685 +------------------------------ +• [SLOW TEST] [10.875 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/apimachinery/crd_conversion_webhook.go:149 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:38.817 + Apr 5 19:52:38.817: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-webhook 04/05/23 19:52:38.818 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:38.833 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:38.836 + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 + STEP: Setting up server cert 04/05/23 19:52:38.838 + STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication 04/05/23 19:52:39.394 + STEP: Deploying the custom resource conversion webhook pod 04/05/23 19:52:39.404 + STEP: Wait for the deployment to be ready 04/05/23 19:52:39.417 + Apr 5 19:52:39.429: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set + Apr 5 19:52:41.441: 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(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:52:43.446: 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(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 52, 39, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:52:45.445 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:52:45.462 + Apr 5 19:52:46.463: 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/apimachinery/crd_conversion_webhook.go:149 + Apr 5 19:52:46.467: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Creating a v1 custom resource 04/05/23 19:52:49.061 + STEP: v2 custom resource should be converted 04/05/23 19:52:49.066 + [AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:49.590: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-webhook-7662" for this suite. 04/05/23 19:52:49.685 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-instrumentation] Events API + should delete a collection of events [Conformance] + test/e2e/instrumentation/events.go:207 +[BeforeEach] [sig-instrumentation] Events API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:49.7 +Apr 5 19:52:49.700: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename events 04/05/23 19:52:49.701 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:49.72 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:49.725 +[BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-instrumentation] Events API + test/e2e/instrumentation/events.go:84 +[It] should delete a collection of events [Conformance] + test/e2e/instrumentation/events.go:207 +STEP: Create set of events 04/05/23 19:52:49.729 +STEP: get a list of Events with a label in the current namespace 04/05/23 19:52:49.746 +STEP: delete a list of events 04/05/23 19:52:49.751 +Apr 5 19:52:49.751: INFO: requesting DeleteCollection of events +STEP: check that the list of events matches the requested quantity 04/05/23 19:52:49.773 +[AfterEach] [sig-instrumentation] Events API + test/e2e/framework/node/init/init.go:32 +Apr 5 19:52:49.778: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-instrumentation] Events API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-instrumentation] Events API + tear down framework | framework.go:193 +STEP: Destroying namespace "events-3104" for this suite. 04/05/23 19:52:49.784 +------------------------------ +• [0.095 seconds] +[sig-instrumentation] Events API +test/e2e/instrumentation/common/framework.go:23 + should delete a collection of events [Conformance] + test/e2e/instrumentation/events.go:207 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-instrumentation] Events API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:49.7 + Apr 5 19:52:49.700: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename events 04/05/23 19:52:49.701 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:49.72 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:49.725 + [BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-instrumentation] Events API + test/e2e/instrumentation/events.go:84 + [It] should delete a collection of events [Conformance] + test/e2e/instrumentation/events.go:207 + STEP: Create set of events 04/05/23 19:52:49.729 + STEP: get a list of Events with a label in the current namespace 04/05/23 19:52:49.746 + STEP: delete a list of events 04/05/23 19:52:49.751 + Apr 5 19:52:49.751: INFO: requesting DeleteCollection of events + STEP: check that the list of events matches the requested quantity 04/05/23 19:52:49.773 + [AfterEach] [sig-instrumentation] Events API + test/e2e/framework/node/init/init.go:32 + Apr 5 19:52:49.778: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-instrumentation] Events API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-instrumentation] Events API + tear down framework | framework.go:193 + STEP: Destroying namespace "events-3104" for this suite. 04/05/23 19:52:49.784 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:240 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:52:49.796 +Apr 5 19:52:49.797: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:52:49.798 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:49.815 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:49.818 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:240 +STEP: Creating configMap with name cm-test-opt-del-255f4320-c1e6-4a71-89c1-a9c05aa287c2 04/05/23 19:52:49.829 +STEP: Creating configMap with name cm-test-opt-upd-be7d006c-1271-4ba8-8b06-0c8c18b2bd79 04/05/23 19:52:49.835 +STEP: Creating the pod 04/05/23 19:52:49.84 +Apr 5 19:52:49.851: INFO: Waiting up to 5m0s for pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476" in namespace "configmap-6228" to be "running and ready" +Apr 5 19:52:49.856: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 4.946963ms +Apr 5 19:52:49.856: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:52:51.862: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010874747s +Apr 5 19:52:51.862: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:52:53.862: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010759359s +Apr 5 19:52:53.862: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:52:55.861: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Running", Reason="", readiness=true. Elapsed: 6.010101199s +Apr 5 19:52:55.861: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Running (Ready = true) +Apr 5 19:52:55.861: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476" satisfied condition "running and ready" +STEP: Deleting configmap cm-test-opt-del-255f4320-c1e6-4a71-89c1-a9c05aa287c2 04/05/23 19:52:55.886 +STEP: Updating configmap cm-test-opt-upd-be7d006c-1271-4ba8-8b06-0c8c18b2bd79 04/05/23 19:52:55.893 +STEP: Creating configMap with name cm-test-opt-create-6770e35f-6861-4187-86c1-b38a829904e1 04/05/23 19:52:55.899 +STEP: waiting to observe update in volume 04/05/23 19:52:55.902 +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:54:28.416: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-6228" for this suite. 04/05/23 19:54:28.422 +------------------------------ +• [SLOW TEST] [98.632 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:240 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:52:49.796 + Apr 5 19:52:49.797: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:52:49.798 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:52:49.815 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:52:49.818 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:240 + STEP: Creating configMap with name cm-test-opt-del-255f4320-c1e6-4a71-89c1-a9c05aa287c2 04/05/23 19:52:49.829 + STEP: Creating configMap with name cm-test-opt-upd-be7d006c-1271-4ba8-8b06-0c8c18b2bd79 04/05/23 19:52:49.835 + STEP: Creating the pod 04/05/23 19:52:49.84 + Apr 5 19:52:49.851: INFO: Waiting up to 5m0s for pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476" in namespace "configmap-6228" to be "running and ready" + Apr 5 19:52:49.856: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 4.946963ms + Apr 5 19:52:49.856: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:52:51.862: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010874747s + Apr 5 19:52:51.862: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:52:53.862: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010759359s + Apr 5 19:52:53.862: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:52:55.861: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476": Phase="Running", Reason="", readiness=true. Elapsed: 6.010101199s + Apr 5 19:52:55.861: INFO: The phase of Pod pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476 is Running (Ready = true) + Apr 5 19:52:55.861: INFO: Pod "pod-configmaps-142b6be8-b857-47a7-afdc-4df6a1af6476" satisfied condition "running and ready" + STEP: Deleting configmap cm-test-opt-del-255f4320-c1e6-4a71-89c1-a9c05aa287c2 04/05/23 19:52:55.886 + STEP: Updating configmap cm-test-opt-upd-be7d006c-1271-4ba8-8b06-0c8c18b2bd79 04/05/23 19:52:55.893 + STEP: Creating configMap with name cm-test-opt-create-6770e35f-6861-4187-86c1-b38a829904e1 04/05/23 19:52:55.899 + STEP: waiting to observe update in volume 04/05/23 19:52:55.902 + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:54:28.416: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-6228" for this suite. 04/05/23 19:54:28.422 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-network] Services + should serve multiport endpoints from pods [Conformance] + test/e2e/network/service.go:848 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:54:28.433 +Apr 5 19:54:28.433: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:54:28.433 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:28.445 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:28.448 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should serve multiport endpoints from pods [Conformance] + test/e2e/network/service.go:848 +STEP: creating service multi-endpoint-test in namespace services-8043 04/05/23 19:54:28.452 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[] 04/05/23 19:54:28.467 +Apr 5 19:54:28.471: INFO: Failed go get Endpoints object: endpoints "multi-endpoint-test" not found +Apr 5 19:54:29.480: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[] +STEP: Creating pod pod1 in namespace services-8043 04/05/23 19:54:29.481 +Apr 5 19:54:29.492: INFO: Waiting up to 5m0s for pod "pod1" in namespace "services-8043" to be "running and ready" +Apr 5 19:54:29.498: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 6.707384ms +Apr 5 19:54:29.498: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:31.503: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011508717s +Apr 5 19:54:31.503: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:33.502: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01036389s +Apr 5 19:54:33.502: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:35.502: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.010525434s +Apr 5 19:54:35.502: INFO: The phase of Pod pod1 is Running (Ready = true) +Apr 5 19:54:35.502: INFO: Pod "pod1" satisfied condition "running and ready" +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod1:[100]] 04/05/23 19:54:35.506 +Apr 5 19:54:35.517: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod1:[100]] +STEP: Creating pod pod2 in namespace services-8043 04/05/23 19:54:35.517 +Apr 5 19:54:35.525: INFO: Waiting up to 5m0s for pod "pod2" in namespace "services-8043" to be "running and ready" +Apr 5 19:54:35.528: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.139807ms +Apr 5 19:54:35.528: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:37.533: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008131806s +Apr 5 19:54:37.534: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:39.534: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008547266s +Apr 5 19:54:39.534: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:54:41.536: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.010477807s +Apr 5 19:54:41.536: INFO: The phase of Pod pod2 is Running (Ready = true) +Apr 5 19:54:41.536: INFO: Pod "pod2" satisfied condition "running and ready" +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod1:[100] pod2:[101]] 04/05/23 19:54:41.539 +Apr 5 19:54:41.553: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod1:[100] pod2:[101]] +STEP: Checking if the Service forwards traffic to pods 04/05/23 19:54:41.553 +Apr 5 19:54:41.553: INFO: Creating new exec pod +Apr 5 19:54:41.558: INFO: Waiting up to 5m0s for pod "execpod6k7mq" in namespace "services-8043" to be "running" +Apr 5 19:54:41.561: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 3.812318ms +Apr 5 19:54:43.565: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007772104s +Apr 5 19:54:45.567: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009429836s +Apr 5 19:54:47.567: INFO: Pod "execpod6k7mq": Phase="Running", Reason="", readiness=true. Elapsed: 6.008914587s +Apr 5 19:54:47.567: INFO: Pod "execpod6k7mq" satisfied condition "running" +Apr 5 19:54:48.567: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 multi-endpoint-test 80' +Apr 5 19:54:48.752: INFO: stderr: "+ nc -v -z -w 2 multi-endpoint-test 80\nConnection to multi-endpoint-test 80 port [tcp/http] succeeded!\n" +Apr 5 19:54:48.752: INFO: stdout: "" +Apr 5 19:54:48.753: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 10.135.58.44 80' +Apr 5 19:54:48.935: INFO: stderr: "+ nc -v -z -w 2 10.135.58.44 80\nConnection to 10.135.58.44 80 port [tcp/http] succeeded!\n" +Apr 5 19:54:48.935: INFO: stdout: "" +Apr 5 19:54:48.935: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 multi-endpoint-test 81' +Apr 5 19:54:49.119: INFO: stderr: "+ nc -v -z -w 2 multi-endpoint-test 81\nConnection to multi-endpoint-test 81 port [tcp/*] succeeded!\n" +Apr 5 19:54:49.119: INFO: stdout: "" +Apr 5 19:54:49.119: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 10.135.58.44 81' +Apr 5 19:54:49.296: INFO: stderr: "+ nc -v -z -w 2 10.135.58.44 81\nConnection to 10.135.58.44 81 port [tcp/*] succeeded!\n" +Apr 5 19:54:49.296: INFO: stdout: "" +STEP: Deleting pod pod1 in namespace services-8043 04/05/23 19:54:49.296 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod2:[101]] 04/05/23 19:54:49.31 +Apr 5 19:54:49.340: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod2:[101]] +STEP: Deleting pod pod2 in namespace services-8043 04/05/23 19:54:49.34 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[] 04/05/23 19:54:49.36 +Apr 5 19:54:50.380: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[] +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:54:50.413: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-8043" for this suite. 04/05/23 19:54:50.419 +------------------------------ +• [SLOW TEST] [21.994 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should serve multiport endpoints from pods [Conformance] + test/e2e/network/service.go:848 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:54:28.433 + Apr 5 19:54:28.433: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:54:28.433 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:28.445 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:28.448 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should serve multiport endpoints from pods [Conformance] + test/e2e/network/service.go:848 + STEP: creating service multi-endpoint-test in namespace services-8043 04/05/23 19:54:28.452 + STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[] 04/05/23 19:54:28.467 + Apr 5 19:54:28.471: INFO: Failed go get Endpoints object: endpoints "multi-endpoint-test" not found + Apr 5 19:54:29.480: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[] + STEP: Creating pod pod1 in namespace services-8043 04/05/23 19:54:29.481 + Apr 5 19:54:29.492: INFO: Waiting up to 5m0s for pod "pod1" in namespace "services-8043" to be "running and ready" + Apr 5 19:54:29.498: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 6.707384ms + Apr 5 19:54:29.498: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:31.503: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011508717s + Apr 5 19:54:31.503: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:33.502: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01036389s + Apr 5 19:54:33.502: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:35.502: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.010525434s + Apr 5 19:54:35.502: INFO: The phase of Pod pod1 is Running (Ready = true) + Apr 5 19:54:35.502: INFO: Pod "pod1" satisfied condition "running and ready" + STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod1:[100]] 04/05/23 19:54:35.506 + Apr 5 19:54:35.517: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod1:[100]] + STEP: Creating pod pod2 in namespace services-8043 04/05/23 19:54:35.517 + Apr 5 19:54:35.525: INFO: Waiting up to 5m0s for pod "pod2" in namespace "services-8043" to be "running and ready" + Apr 5 19:54:35.528: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.139807ms + Apr 5 19:54:35.528: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:37.533: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008131806s + Apr 5 19:54:37.534: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:39.534: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008547266s + Apr 5 19:54:39.534: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:54:41.536: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.010477807s + Apr 5 19:54:41.536: INFO: The phase of Pod pod2 is Running (Ready = true) + Apr 5 19:54:41.536: INFO: Pod "pod2" satisfied condition "running and ready" + STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod1:[100] pod2:[101]] 04/05/23 19:54:41.539 + Apr 5 19:54:41.553: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod1:[100] pod2:[101]] + STEP: Checking if the Service forwards traffic to pods 04/05/23 19:54:41.553 + Apr 5 19:54:41.553: INFO: Creating new exec pod + Apr 5 19:54:41.558: INFO: Waiting up to 5m0s for pod "execpod6k7mq" in namespace "services-8043" to be "running" + Apr 5 19:54:41.561: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 3.812318ms + Apr 5 19:54:43.565: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007772104s + Apr 5 19:54:45.567: INFO: Pod "execpod6k7mq": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009429836s + Apr 5 19:54:47.567: INFO: Pod "execpod6k7mq": Phase="Running", Reason="", readiness=true. Elapsed: 6.008914587s + Apr 5 19:54:47.567: INFO: Pod "execpod6k7mq" satisfied condition "running" + Apr 5 19:54:48.567: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 multi-endpoint-test 80' + Apr 5 19:54:48.752: INFO: stderr: "+ nc -v -z -w 2 multi-endpoint-test 80\nConnection to multi-endpoint-test 80 port [tcp/http] succeeded!\n" + Apr 5 19:54:48.752: INFO: stdout: "" + Apr 5 19:54:48.753: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 10.135.58.44 80' + Apr 5 19:54:48.935: INFO: stderr: "+ nc -v -z -w 2 10.135.58.44 80\nConnection to 10.135.58.44 80 port [tcp/http] succeeded!\n" + Apr 5 19:54:48.935: INFO: stdout: "" + Apr 5 19:54:48.935: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 multi-endpoint-test 81' + Apr 5 19:54:49.119: INFO: stderr: "+ nc -v -z -w 2 multi-endpoint-test 81\nConnection to multi-endpoint-test 81 port [tcp/*] succeeded!\n" + Apr 5 19:54:49.119: INFO: stdout: "" + Apr 5 19:54:49.119: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8043 exec execpod6k7mq -- /bin/sh -x -c nc -v -z -w 2 10.135.58.44 81' + Apr 5 19:54:49.296: INFO: stderr: "+ nc -v -z -w 2 10.135.58.44 81\nConnection to 10.135.58.44 81 port [tcp/*] succeeded!\n" + Apr 5 19:54:49.296: INFO: stdout: "" + STEP: Deleting pod pod1 in namespace services-8043 04/05/23 19:54:49.296 + STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[pod2:[101]] 04/05/23 19:54:49.31 + Apr 5 19:54:49.340: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[pod2:[101]] + STEP: Deleting pod pod2 in namespace services-8043 04/05/23 19:54:49.34 + STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8043 to expose endpoints map[] 04/05/23 19:54:49.36 + Apr 5 19:54:50.380: INFO: successfully validated that service multi-endpoint-test in namespace services-8043 exposes endpoints map[] + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:54:50.413: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-8043" for this suite. 04/05/23 19:54:50.419 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-node] Variable Expansion + should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/common/node/expansion.go:152 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:54:50.43 +Apr 5 19:54:50.430: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:54:50.431 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:50.458 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:50.461 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/common/node/expansion.go:152 +Apr 5 19:54:50.472: INFO: Waiting up to 2m0s for pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" in namespace "var-expansion-3215" to be "container 0 failed with reason CreateContainerConfigError" +Apr 5 19:54:50.483: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 11.106629ms +Apr 5 19:54:52.489: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 2.0164502s +Apr 5 19:54:54.488: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015666467s +Apr 5 19:54:56.487: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 6.015199789s +Apr 5 19:54:56.487: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" satisfied condition "container 0 failed with reason CreateContainerConfigError" +Apr 5 19:54:56.487: INFO: Deleting pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" in namespace "var-expansion-3215" +Apr 5 19:54:56.495: INFO: Wait up to 5m0s for pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:54:58.503: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-3215" for this suite. 04/05/23 19:54:58.51 +------------------------------ +• [SLOW TEST] [8.086 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/common/node/expansion.go:152 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:54:50.43 + Apr 5 19:54:50.430: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:54:50.431 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:50.458 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:50.461 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/common/node/expansion.go:152 + Apr 5 19:54:50.472: INFO: Waiting up to 2m0s for pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" in namespace "var-expansion-3215" to be "container 0 failed with reason CreateContainerConfigError" + Apr 5 19:54:50.483: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 11.106629ms + Apr 5 19:54:52.489: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 2.0164502s + Apr 5 19:54:54.488: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015666467s + Apr 5 19:54:56.487: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27": Phase="Pending", Reason="", readiness=false. Elapsed: 6.015199789s + Apr 5 19:54:56.487: INFO: Pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" satisfied condition "container 0 failed with reason CreateContainerConfigError" + Apr 5 19:54:56.487: INFO: Deleting pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" in namespace "var-expansion-3215" + Apr 5 19:54:56.495: INFO: Wait up to 5m0s for pod "var-expansion-76d691f7-d0e5-45cb-b9b8-bba733e1de27" to be fully deleted + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:54:58.503: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-3215" for this suite. 04/05/23 19:54:58.51 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2228 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:54:58.519 +Apr 5 19:54:58.519: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 19:54:58.52 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:58.534 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:58.537 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2228 +STEP: creating service in namespace services-8832 04/05/23 19:54:58.54 +STEP: creating service affinity-nodeport in namespace services-8832 04/05/23 19:54:58.54 +STEP: creating replication controller affinity-nodeport in namespace services-8832 04/05/23 19:54:58.564 +I0405 19:54:58.570677 19 runners.go:193] Created replication controller with name: affinity-nodeport, namespace: services-8832, replica count: 3 +I0405 19:55:01.621635 19 runners.go:193] affinity-nodeport Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 19:55:04.622748 19 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 +Apr 5 19:55:04.634: INFO: Creating new exec pod +Apr 5 19:55:04.643: INFO: Waiting up to 5m0s for pod "execpod-affinityz8xlt" in namespace "services-8832" to be "running" +Apr 5 19:55:04.646: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 3.748018ms +Apr 5 19:55:06.651: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007945878s +Apr 5 19:55:08.652: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009711353s +Apr 5 19:55:10.653: INFO: Pod "execpod-affinityz8xlt": Phase="Running", Reason="", readiness=true. Elapsed: 6.010109667s +Apr 5 19:55:10.653: INFO: Pod "execpod-affinityz8xlt" satisfied condition "running" +Apr 5 19:55:11.658: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 affinity-nodeport 80' +Apr 5 19:55:11.845: INFO: stderr: "+ nc -v -z -w 2 affinity-nodeport 80\nConnection to affinity-nodeport 80 port [tcp/http] succeeded!\n" +Apr 5 19:55:11.846: INFO: stdout: "" +Apr 5 19:55:11.846: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 10.140.87.170 80' +Apr 5 19:55:12.039: INFO: stderr: "+ nc -v -z -w 2 10.140.87.170 80\nConnection to 10.140.87.170 80 port [tcp/http] succeeded!\n" +Apr 5 19:55:12.039: INFO: stdout: "" +Apr 5 19:55:12.039: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 30165' +Apr 5 19:55:12.235: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 30165\nConnection to 195.17.2.92 30165 port [tcp/*] succeeded!\n" +Apr 5 19:55:12.236: INFO: stdout: "" +Apr 5 19:55:12.236: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 30165' +Apr 5 19:55:12.531: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 30165\nConnection to 195.17.150.192 30165 port [tcp/*] succeeded!\n" +Apr 5 19:55:12.531: INFO: stdout: "" +Apr 5 19:55:12.531: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:30165/ ; done' +Apr 5 19:55:12.988: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n" +Apr 5 19:55:12.988: INFO: stdout: "\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk" +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk +Apr 5 19:55:12.988: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-nodeport in namespace services-8832, will wait for the garbage collector to delete the pods 04/05/23 19:55:13.006 +Apr 5 19:55:13.069: INFO: Deleting ReplicationController affinity-nodeport took: 8.985267ms +Apr 5 19:55:13.169: INFO: Terminating ReplicationController affinity-nodeport pods took: 100.287178ms +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 19:55:15.203: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-8832" for this suite. 04/05/23 19:55:15.208 +------------------------------ +• [SLOW TEST] [16.697 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2228 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:54:58.519 + Apr 5 19:54:58.519: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 19:54:58.52 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:54:58.534 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:54:58.537 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2228 + STEP: creating service in namespace services-8832 04/05/23 19:54:58.54 + STEP: creating service affinity-nodeport in namespace services-8832 04/05/23 19:54:58.54 + STEP: creating replication controller affinity-nodeport in namespace services-8832 04/05/23 19:54:58.564 + I0405 19:54:58.570677 19 runners.go:193] Created replication controller with name: affinity-nodeport, namespace: services-8832, replica count: 3 + I0405 19:55:01.621635 19 runners.go:193] affinity-nodeport Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 19:55:04.622748 19 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 + Apr 5 19:55:04.634: INFO: Creating new exec pod + Apr 5 19:55:04.643: INFO: Waiting up to 5m0s for pod "execpod-affinityz8xlt" in namespace "services-8832" to be "running" + Apr 5 19:55:04.646: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 3.748018ms + Apr 5 19:55:06.651: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007945878s + Apr 5 19:55:08.652: INFO: Pod "execpod-affinityz8xlt": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009711353s + Apr 5 19:55:10.653: INFO: Pod "execpod-affinityz8xlt": Phase="Running", Reason="", readiness=true. Elapsed: 6.010109667s + Apr 5 19:55:10.653: INFO: Pod "execpod-affinityz8xlt" satisfied condition "running" + Apr 5 19:55:11.658: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 affinity-nodeport 80' + Apr 5 19:55:11.845: INFO: stderr: "+ nc -v -z -w 2 affinity-nodeport 80\nConnection to affinity-nodeport 80 port [tcp/http] succeeded!\n" + Apr 5 19:55:11.846: INFO: stdout: "" + Apr 5 19:55:11.846: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 10.140.87.170 80' + Apr 5 19:55:12.039: INFO: stderr: "+ nc -v -z -w 2 10.140.87.170 80\nConnection to 10.140.87.170 80 port [tcp/http] succeeded!\n" + Apr 5 19:55:12.039: INFO: stdout: "" + Apr 5 19:55:12.039: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 30165' + Apr 5 19:55:12.235: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 30165\nConnection to 195.17.2.92 30165 port [tcp/*] succeeded!\n" + Apr 5 19:55:12.236: INFO: stdout: "" + Apr 5 19:55:12.236: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 30165' + Apr 5 19:55:12.531: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 30165\nConnection to 195.17.150.192 30165 port [tcp/*] succeeded!\n" + Apr 5 19:55:12.531: INFO: stdout: "" + Apr 5 19:55:12.531: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-8832 exec execpod-affinityz8xlt -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:30165/ ; done' + Apr 5 19:55:12.988: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:30165/\n" + Apr 5 19:55:12.988: INFO: stdout: "\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk\naffinity-nodeport-dgnvk" + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Received response from host: affinity-nodeport-dgnvk + Apr 5 19:55:12.988: INFO: Cleaning up the exec pod + STEP: deleting ReplicationController affinity-nodeport in namespace services-8832, will wait for the garbage collector to delete the pods 04/05/23 19:55:13.006 + Apr 5 19:55:13.069: INFO: Deleting ReplicationController affinity-nodeport took: 8.985267ms + Apr 5 19:55:13.169: INFO: Terminating ReplicationController affinity-nodeport pods took: 100.287178ms + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 19:55:15.203: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-8832" for this suite. 04/05/23 19:55:15.208 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:90 +[BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:55:15.226 +Apr 5 19:55:15.226: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:55:15.227 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:15.245 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:15.248 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 +[It] should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:90 +STEP: Creating a pod to test downward api env vars 04/05/23 19:55:15.251 +Apr 5 19:55:15.259: INFO: Waiting up to 5m0s for pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4" in namespace "downward-api-6720" to be "Succeeded or Failed" +Apr 5 19:55:15.264: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.500808ms +Apr 5 19:55:17.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009674429s +Apr 5 19:55:19.270: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010977005s +Apr 5 19:55:21.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010082962s +Apr 5 19:55:23.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010074432s +STEP: Saw pod success 04/05/23 19:55:23.269 +Apr 5 19:55:23.270: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4" satisfied condition "Succeeded or Failed" +Apr 5 19:55:23.273: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 container dapi-container: +STEP: delete the pod 04/05/23 19:55:23.283 +Apr 5 19:55:23.299: INFO: Waiting for pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 to disappear +Apr 5 19:55:23.301: INFO: Pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 +Apr 5 19:55:23.301: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-6720" for this suite. 04/05/23 19:55:23.306 +------------------------------ +• [SLOW TEST] [8.087 seconds] +[sig-node] Downward API +test/e2e/common/node/framework.go:23 + should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:90 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:55:15.226 + Apr 5 19:55:15.226: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:55:15.227 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:15.245 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:15.248 + [BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 + [It] should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:90 + STEP: Creating a pod to test downward api env vars 04/05/23 19:55:15.251 + Apr 5 19:55:15.259: INFO: Waiting up to 5m0s for pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4" in namespace "downward-api-6720" to be "Succeeded or Failed" + Apr 5 19:55:15.264: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.500808ms + Apr 5 19:55:17.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009674429s + Apr 5 19:55:19.270: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010977005s + Apr 5 19:55:21.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010082962s + Apr 5 19:55:23.269: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010074432s + STEP: Saw pod success 04/05/23 19:55:23.269 + Apr 5 19:55:23.270: INFO: Pod "downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4" satisfied condition "Succeeded or Failed" + Apr 5 19:55:23.273: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 container dapi-container: + STEP: delete the pod 04/05/23 19:55:23.283 + Apr 5 19:55:23.299: INFO: Waiting for pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 to disappear + Apr 5 19:55:23.301: INFO: Pod downward-api-76c73159-d692-4c5f-8dfd-5e7709cf47d4 no longer exists + [AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 + Apr 5 19:55:23.301: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-6720" for this suite. 04/05/23 19:55:23.306 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should validate Statefulset Status endpoints [Conformance] + test/e2e/apps/statefulset.go:977 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:55:23.317 +Apr 5 19:55:23.317: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 19:55:23.319 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:23.334 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:23.336 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-4704 04/05/23 19:55:23.34 +[It] should validate Statefulset Status endpoints [Conformance] + test/e2e/apps/statefulset.go:977 +STEP: Creating statefulset ss in namespace statefulset-4704 04/05/23 19:55:23.353 +Apr 5 19:55:23.361: INFO: Found 0 stateful pods, waiting for 1 +Apr 5 19:55:33.367: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: Patch Statefulset to include a label 04/05/23 19:55:33.373 +STEP: Getting /status 04/05/23 19:55:33.384 +Apr 5 19:55:33.388: INFO: StatefulSet ss has Conditions: []v1.StatefulSetCondition(nil) +STEP: updating the StatefulSet Status 04/05/23 19:55:33.388 +Apr 5 19:55:33.399: 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 04/05/23 19:55:33.4 +Apr 5 19:55:33.402: INFO: Observed &StatefulSet event: ADDED +Apr 5 19:55:33.402: INFO: Found Statefulset ss in namespace statefulset-4704 with labels: map[e2e:testing] annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Apr 5 19:55:33.402: INFO: Statefulset ss has an updated status +STEP: patching the Statefulset Status 04/05/23 19:55:33.402 +Apr 5 19:55:33.402: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Apr 5 19:55:33.409: 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 04/05/23 19:55:33.409 +Apr 5 19:55:33.411: INFO: Observed &StatefulSet event: ADDED +Apr 5 19:55:33.411: INFO: Observed Statefulset ss in namespace statefulset-4704 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Apr 5 19:55:33.411: INFO: Observed &StatefulSet event: MODIFIED +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 19:55:33.411: INFO: Deleting all statefulset in ns statefulset-4704 +Apr 5 19:55:33.415: INFO: Scaling statefulset ss to 0 +Apr 5 19:55:43.435: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 19:55:43.440: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:55:43.470: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-4704" for this suite. 04/05/23 19:55:43.477 +------------------------------ +• [SLOW TEST] [20.166 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + should validate Statefulset Status endpoints [Conformance] + test/e2e/apps/statefulset.go:977 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:55:23.317 + Apr 5 19:55:23.317: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 19:55:23.319 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:23.334 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:23.336 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-4704 04/05/23 19:55:23.34 + [It] should validate Statefulset Status endpoints [Conformance] + test/e2e/apps/statefulset.go:977 + STEP: Creating statefulset ss in namespace statefulset-4704 04/05/23 19:55:23.353 + Apr 5 19:55:23.361: INFO: Found 0 stateful pods, waiting for 1 + Apr 5 19:55:33.367: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true + STEP: Patch Statefulset to include a label 04/05/23 19:55:33.373 + STEP: Getting /status 04/05/23 19:55:33.384 + Apr 5 19:55:33.388: INFO: StatefulSet ss has Conditions: []v1.StatefulSetCondition(nil) + STEP: updating the StatefulSet Status 04/05/23 19:55:33.388 + Apr 5 19:55:33.399: 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 04/05/23 19:55:33.4 + Apr 5 19:55:33.402: INFO: Observed &StatefulSet event: ADDED + Apr 5 19:55:33.402: INFO: Found Statefulset ss in namespace statefulset-4704 with labels: map[e2e:testing] annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} + Apr 5 19:55:33.402: INFO: Statefulset ss has an updated status + STEP: patching the Statefulset Status 04/05/23 19:55:33.402 + Apr 5 19:55:33.402: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} + Apr 5 19:55:33.409: 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 04/05/23 19:55:33.409 + Apr 5 19:55:33.411: INFO: Observed &StatefulSet event: ADDED + Apr 5 19:55:33.411: INFO: Observed Statefulset ss in namespace statefulset-4704 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} + Apr 5 19:55:33.411: INFO: Observed &StatefulSet event: MODIFIED + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 19:55:33.411: INFO: Deleting all statefulset in ns statefulset-4704 + Apr 5 19:55:33.415: INFO: Scaling statefulset ss to 0 + Apr 5 19:55:43.435: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 19:55:43.440: INFO: Deleting statefulset ss + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:55:43.470: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-4704" for this suite. 04/05/23 19:55:43.477 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:44 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:55:43.487 +Apr 5 19:55:43.487: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:55:43.488 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:43.502 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:43.505 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:44 +STEP: Creating a pod to test env composition 04/05/23 19:55:43.508 +Apr 5 19:55:43.517: INFO: Waiting up to 5m0s for pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235" in namespace "var-expansion-8691" to be "Succeeded or Failed" +Apr 5 19:55:43.524: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 7.440501ms +Apr 5 19:55:45.531: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014729278s +Apr 5 19:55:47.529: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012481047s +Apr 5 19:55:49.530: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012994866s +Apr 5 19:55:51.529: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012498395s +STEP: Saw pod success 04/05/23 19:55:51.529 +Apr 5 19:55:51.530: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235" satisfied condition "Succeeded or Failed" +Apr 5 19:55:51.533: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 container dapi-container: +STEP: delete the pod 04/05/23 19:55:51.54 +Apr 5 19:55:51.554: INFO: Waiting for pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 to disappear +Apr 5 19:55:51.557: INFO: Pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:55:51.557: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-8691" for this suite. 04/05/23 19:55:51.562 +------------------------------ +• [SLOW TEST] [8.082 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/common/node/expansion.go:44 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:55:43.487 + Apr 5 19:55:43.487: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:55:43.488 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:43.502 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:43.505 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:44 + STEP: Creating a pod to test env composition 04/05/23 19:55:43.508 + Apr 5 19:55:43.517: INFO: Waiting up to 5m0s for pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235" in namespace "var-expansion-8691" to be "Succeeded or Failed" + Apr 5 19:55:43.524: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 7.440501ms + Apr 5 19:55:45.531: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014729278s + Apr 5 19:55:47.529: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012481047s + Apr 5 19:55:49.530: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012994866s + Apr 5 19:55:51.529: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.012498395s + STEP: Saw pod success 04/05/23 19:55:51.529 + Apr 5 19:55:51.530: INFO: Pod "var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235" satisfied condition "Succeeded or Failed" + Apr 5 19:55:51.533: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 container dapi-container: + STEP: delete the pod 04/05/23 19:55:51.54 + Apr 5 19:55:51.554: INFO: Waiting for pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 to disappear + Apr 5 19:55:51.557: INFO: Pod var-expansion-5e87c77c-5eda-41c6-b26d-853caef3c235 no longer exists + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:55:51.557: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-8691" for this suite. 04/05/23 19:55:51.562 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/apimachinery/resource_quota.go:392 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:55:51.571 +Apr 5 19:55:51.571: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 19:55:51.573 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:51.585 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:51.588 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/apimachinery/resource_quota.go:392 +STEP: Counting existing ResourceQuota 04/05/23 19:55:51.591 +STEP: Creating a ResourceQuota 04/05/23 19:55:56.596 +STEP: Ensuring resource quota status is calculated 04/05/23 19:55:56.602 +STEP: Creating a ReplicationController 04/05/23 19:55:58.605 +STEP: Ensuring resource quota status captures replication controller creation 04/05/23 19:55:58.618 +STEP: Deleting a ReplicationController 04/05/23 19:56:00.623 +STEP: Ensuring resource quota status released usage 04/05/23 19:56:00.629 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 19:56:02.634: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-438" for this suite. 04/05/23 19:56:02.64 +------------------------------ +• [SLOW TEST] [11.077 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/apimachinery/resource_quota.go:392 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:55:51.571 + Apr 5 19:55:51.571: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 19:55:51.573 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:55:51.585 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:55:51.588 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/apimachinery/resource_quota.go:392 + STEP: Counting existing ResourceQuota 04/05/23 19:55:51.591 + STEP: Creating a ResourceQuota 04/05/23 19:55:56.596 + STEP: Ensuring resource quota status is calculated 04/05/23 19:55:56.602 + STEP: Creating a ReplicationController 04/05/23 19:55:58.605 + STEP: Ensuring resource quota status captures replication controller creation 04/05/23 19:55:58.618 + STEP: Deleting a ReplicationController 04/05/23 19:56:00.623 + STEP: Ensuring resource quota status released usage 04/05/23 19:56:00.629 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 19:56:02.634: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-438" for this suite. 04/05/23 19:56:02.64 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:166 +[BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:56:02.656 +Apr 5 19:56:02.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 19:56:02.657 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:02.673 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:02.676 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 +[It] should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:166 +STEP: Creating a pod to test downward api env vars 04/05/23 19:56:02.68 +Apr 5 19:56:02.687: INFO: Waiting up to 5m0s for pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33" in namespace "downward-api-8214" to be "Succeeded or Failed" +Apr 5 19:56:02.690: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 3.497094ms +Apr 5 19:56:04.695: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008207645s +Apr 5 19:56:06.696: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009320028s +Apr 5 19:56:08.695: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008319415s +Apr 5 19:56:10.697: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009629866s +STEP: Saw pod success 04/05/23 19:56:10.697 +Apr 5 19:56:10.697: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33" satisfied condition "Succeeded or Failed" +Apr 5 19:56:10.701: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 container dapi-container: +STEP: delete the pod 04/05/23 19:56:10.71 +Apr 5 19:56:10.725: INFO: Waiting for pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 to disappear +Apr 5 19:56:10.729: INFO: Pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 +Apr 5 19:56:10.729: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-8214" for this suite. 04/05/23 19:56:10.734 +------------------------------ +• [SLOW TEST] [8.086 seconds] +[sig-node] Downward API +test/e2e/common/node/framework.go:23 + should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:166 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:56:02.656 + Apr 5 19:56:02.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 19:56:02.657 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:02.673 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:02.676 + [BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 + [It] should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:166 + STEP: Creating a pod to test downward api env vars 04/05/23 19:56:02.68 + Apr 5 19:56:02.687: INFO: Waiting up to 5m0s for pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33" in namespace "downward-api-8214" to be "Succeeded or Failed" + Apr 5 19:56:02.690: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 3.497094ms + Apr 5 19:56:04.695: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008207645s + Apr 5 19:56:06.696: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009320028s + Apr 5 19:56:08.695: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008319415s + Apr 5 19:56:10.697: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009629866s + STEP: Saw pod success 04/05/23 19:56:10.697 + Apr 5 19:56:10.697: INFO: Pod "downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33" satisfied condition "Succeeded or Failed" + Apr 5 19:56:10.701: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 container dapi-container: + STEP: delete the pod 04/05/23 19:56:10.71 + Apr 5 19:56:10.725: INFO: Waiting for pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 to disappear + Apr 5 19:56:10.729: INFO: Pod downward-api-55c00a05-cd20-4c56-8dc4-ec9ec833ea33 no longer exists + [AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 + Apr 5 19:56:10.729: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-8214" for this suite. 04/05/23 19:56:10.734 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a volume subpath [Conformance] + test/e2e/common/node/expansion.go:112 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:56:10.757 +Apr 5 19:56:10.757: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 19:56:10.758 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:10.773 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:10.776 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should allow substituting values in a volume subpath [Conformance] + test/e2e/common/node/expansion.go:112 +STEP: Creating a pod to test substitution in volume subpath 04/05/23 19:56:10.78 +Apr 5 19:56:10.788: INFO: Waiting up to 5m0s for pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe" in namespace "var-expansion-2676" to be "Succeeded or Failed" +Apr 5 19:56:10.792: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024625ms +Apr 5 19:56:12.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00871568s +Apr 5 19:56:14.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008927634s +Apr 5 19:56:16.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00878325s +Apr 5 19:56:18.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009295321s +STEP: Saw pod success 04/05/23 19:56:18.797 +Apr 5 19:56:18.798: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe" satisfied condition "Succeeded or Failed" +Apr 5 19:56:18.801: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe container dapi-container: +STEP: delete the pod 04/05/23 19:56:18.81 +Apr 5 19:56:18.825: INFO: Waiting for pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe to disappear +Apr 5 19:56:18.828: INFO: Pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 19:56:18.828: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-2676" for this suite. 04/05/23 19:56:18.833 +------------------------------ +• [SLOW TEST] [8.082 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should allow substituting values in a volume subpath [Conformance] + test/e2e/common/node/expansion.go:112 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:56:10.757 + Apr 5 19:56:10.757: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 19:56:10.758 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:10.773 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:10.776 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should allow substituting values in a volume subpath [Conformance] + test/e2e/common/node/expansion.go:112 + STEP: Creating a pod to test substitution in volume subpath 04/05/23 19:56:10.78 + Apr 5 19:56:10.788: INFO: Waiting up to 5m0s for pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe" in namespace "var-expansion-2676" to be "Succeeded or Failed" + Apr 5 19:56:10.792: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024625ms + Apr 5 19:56:12.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00871568s + Apr 5 19:56:14.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008927634s + Apr 5 19:56:16.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00878325s + Apr 5 19:56:18.797: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009295321s + STEP: Saw pod success 04/05/23 19:56:18.797 + Apr 5 19:56:18.798: INFO: Pod "var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe" satisfied condition "Succeeded or Failed" + Apr 5 19:56:18.801: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe container dapi-container: + STEP: delete the pod 04/05/23 19:56:18.81 + Apr 5 19:56:18.825: INFO: Waiting for pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe to disappear + Apr 5 19:56:18.828: INFO: Pod var-expansion-95f2d74e-2da4-48f8-86ac-462805a517fe no longer exists + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 19:56:18.828: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-2676" for this suite. 04/05/23 19:56:18.833 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-scheduling] LimitRange + should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/scheduling/limit_range.go:61 +[BeforeEach] [sig-scheduling] LimitRange + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:56:18.844 +Apr 5 19:56:18.844: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename limitrange 04/05/23 19:56:18.845 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:18.86 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:18.863 +[BeforeEach] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:31 +[It] should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/scheduling/limit_range.go:61 +STEP: Creating a LimitRange 04/05/23 19:56:18.866 +STEP: Setting up watch 04/05/23 19:56:18.866 +STEP: Submitting a LimitRange 04/05/23 19:56:18.97 +STEP: Verifying LimitRange creation was observed 04/05/23 19:56:18.978 +STEP: Fetching the LimitRange to ensure it has proper values 04/05/23 19:56:18.979 +Apr 5 19:56:18.982: 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}] +Apr 5 19:56:18.982: 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 04/05/23 19:56:18.982 +STEP: Ensuring Pod has resource requirements applied from LimitRange 04/05/23 19:56:18.988 +Apr 5 19:56:18.992: 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}] +Apr 5 19:56:18.992: 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 04/05/23 19:56:18.992 +STEP: Ensuring Pod has merged resource requirements applied from LimitRange 04/05/23 19:56:18.999 +Apr 5 19:56:19.004: 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}] +Apr 5 19:56:19.004: 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 04/05/23 19:56:19.004 +STEP: Failing to create a Pod with more than max resources 04/05/23 19:56:19.007 +STEP: Updating a LimitRange 04/05/23 19:56:19.014 +STEP: Verifying LimitRange updating is effective 04/05/23 19:56:19.019 +STEP: Creating a Pod with less than former min resources 04/05/23 19:56:21.025 +STEP: Failing to create a Pod with more than max resources 04/05/23 19:56:21.033 +STEP: Deleting a LimitRange 04/05/23 19:56:21.035 +STEP: Verifying the LimitRange was deleted 04/05/23 19:56:21.043 +Apr 5 19:56:26.049: INFO: limitRange is already deleted +STEP: Creating a Pod with more than former max resources 04/05/23 19:56:26.049 +[AfterEach] [sig-scheduling] LimitRange + test/e2e/framework/node/init/init.go:32 +Apr 5 19:56:26.058: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] LimitRange + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] LimitRange + tear down framework | framework.go:193 +STEP: Destroying namespace "limitrange-7152" for this suite. 04/05/23 19:56:26.066 +------------------------------ +• [SLOW TEST] [7.230 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/scheduling/limit_range.go:61 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] LimitRange + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:56:18.844 + Apr 5 19:56:18.844: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename limitrange 04/05/23 19:56:18.845 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:18.86 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:18.863 + [BeforeEach] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:31 + [It] should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/scheduling/limit_range.go:61 + STEP: Creating a LimitRange 04/05/23 19:56:18.866 + STEP: Setting up watch 04/05/23 19:56:18.866 + STEP: Submitting a LimitRange 04/05/23 19:56:18.97 + STEP: Verifying LimitRange creation was observed 04/05/23 19:56:18.978 + STEP: Fetching the LimitRange to ensure it has proper values 04/05/23 19:56:18.979 + Apr 5 19:56:18.982: 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}] + Apr 5 19:56:18.982: 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 04/05/23 19:56:18.982 + STEP: Ensuring Pod has resource requirements applied from LimitRange 04/05/23 19:56:18.988 + Apr 5 19:56:18.992: 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}] + Apr 5 19:56:18.992: 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 04/05/23 19:56:18.992 + STEP: Ensuring Pod has merged resource requirements applied from LimitRange 04/05/23 19:56:18.999 + Apr 5 19:56:19.004: 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}] + Apr 5 19:56:19.004: 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 04/05/23 19:56:19.004 + STEP: Failing to create a Pod with more than max resources 04/05/23 19:56:19.007 + STEP: Updating a LimitRange 04/05/23 19:56:19.014 + STEP: Verifying LimitRange updating is effective 04/05/23 19:56:19.019 + STEP: Creating a Pod with less than former min resources 04/05/23 19:56:21.025 + STEP: Failing to create a Pod with more than max resources 04/05/23 19:56:21.033 + STEP: Deleting a LimitRange 04/05/23 19:56:21.035 + STEP: Verifying the LimitRange was deleted 04/05/23 19:56:21.043 + Apr 5 19:56:26.049: INFO: limitRange is already deleted + STEP: Creating a Pod with more than former max resources 04/05/23 19:56:26.049 + [AfterEach] [sig-scheduling] LimitRange + test/e2e/framework/node/init/init.go:32 + Apr 5 19:56:26.058: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] LimitRange + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] LimitRange + tear down framework | framework.go:193 + STEP: Destroying namespace "limitrange-7152" for this suite. 04/05/23 19:56:26.066 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/network/dns.go:193 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:56:26.079 +Apr 5 19:56:26.079: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 19:56:26.08 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:26.094 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:26.097 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/network/dns.go:193 +STEP: Creating a test headless service 04/05/23 19:56:26.1 +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-118 A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-118;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118 A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-118;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +notcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_udp@PTR;check="$$(dig +tcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_tcp@PTR;sleep 1; done + 04/05/23 19:56:26.13 +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-118 A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-118;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118 A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-118;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +notcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_udp@PTR;check="$$(dig +tcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_tcp@PTR;sleep 1; done + 04/05/23 19:56:26.131 +STEP: creating a pod to probe DNS 04/05/23 19:56:26.132 +STEP: submitting the pod to kubernetes 04/05/23 19:56:26.132 +Apr 5 19:56:26.146: INFO: Waiting up to 15m0s for pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392" in namespace "dns-118" to be "running" +Apr 5 19:56:26.155: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 8.599699ms +Apr 5 19:56:28.161: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014492282s +Apr 5 19:56:30.159: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013020902s +Apr 5 19:56:32.160: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Running", Reason="", readiness=true. Elapsed: 6.013879927s +Apr 5 19:56:32.160: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392" satisfied condition "running" +STEP: retrieving the pod 04/05/23 19:56:32.16 +STEP: looking for the results for each expected name from probers 04/05/23 19:56:32.165 +Apr 5 19:56:32.171: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.177: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.180: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.184: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.188: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.192: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.195: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.200: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.217: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.225: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.228: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.232: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.236: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.239: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.243: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.246: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:32.261: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:56:37.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.276: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.285: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.288: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.292: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.296: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.314: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.318: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.322: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.330: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.337: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.341: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:37.356: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:56:42.266: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.279: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.283: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.295: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.318: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.321: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.330: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.337: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.341: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:42.356: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:56:47.268: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.273: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.278: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.291: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.298: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.301: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.306: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.329: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.334: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.338: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.342: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.346: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.349: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.353: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.357: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:47.381: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:56:52.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.284: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.295: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.324: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.328: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.332: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.335: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.339: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.343: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.346: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:52.361: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:56:57.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.283: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.294: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.317: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.321: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.328: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.338: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.342: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) +Apr 5 19:56:57.357: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + +Apr 5 19:57:02.359: INFO: DNS probes using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 succeeded + +STEP: deleting the pod 04/05/23 19:57:02.359 +STEP: deleting the test service 04/05/23 19:57:02.379 +STEP: deleting the test headless service 04/05/23 19:57:02.437 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 19:57:02.453: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-118" for this suite. 04/05/23 19:57:02.459 +------------------------------ +• [SLOW TEST] [36.386 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/network/dns.go:193 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:56:26.079 + Apr 5 19:56:26.079: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 19:56:26.08 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:56:26.094 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:56:26.097 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/network/dns.go:193 + STEP: Creating a test headless service 04/05/23 19:56:26.1 + 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-118 A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-118;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118 A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-118;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +notcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_udp@PTR;check="$$(dig +tcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_tcp@PTR;sleep 1; done + 04/05/23 19:56:26.13 + 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-118 A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-118;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118 A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-118;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-118.svc A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-118.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-118.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-118.svc;check="$$(dig +notcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_udp@PTR;check="$$(dig +tcp +noall +answer +search 127.56.139.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.139.56.127_tcp@PTR;sleep 1; done + 04/05/23 19:56:26.131 + STEP: creating a pod to probe DNS 04/05/23 19:56:26.132 + STEP: submitting the pod to kubernetes 04/05/23 19:56:26.132 + Apr 5 19:56:26.146: INFO: Waiting up to 15m0s for pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392" in namespace "dns-118" to be "running" + Apr 5 19:56:26.155: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 8.599699ms + Apr 5 19:56:28.161: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014492282s + Apr 5 19:56:30.159: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013020902s + Apr 5 19:56:32.160: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392": Phase="Running", Reason="", readiness=true. Elapsed: 6.013879927s + Apr 5 19:56:32.160: INFO: Pod "dns-test-b2179807-3618-4357-9f4b-e5837c4eb392" satisfied condition "running" + STEP: retrieving the pod 04/05/23 19:56:32.16 + STEP: looking for the results for each expected name from probers 04/05/23 19:56:32.165 + Apr 5 19:56:32.171: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.177: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.180: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.184: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.188: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.192: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.195: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.200: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.217: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.225: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.228: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.232: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.236: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.239: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.243: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.246: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:32.261: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:56:37.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.276: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.285: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.288: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.292: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.296: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.314: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.318: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.322: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.330: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.337: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.341: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:37.356: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:56:42.266: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.279: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.283: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.295: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.318: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.321: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.330: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.337: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.341: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:42.356: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:56:47.268: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.273: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.278: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.291: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.298: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.301: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.306: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.329: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.334: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.338: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.342: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.346: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.349: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.353: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.357: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:47.381: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:56:52.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.284: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.295: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.324: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.328: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.332: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.335: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.339: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.343: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.346: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:52.361: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:56:57.267: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.271: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.275: INFO: Unable to read wheezy_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.280: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.283: INFO: Unable to read wheezy_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.287: INFO: Unable to read wheezy_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.291: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.294: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.313: INFO: Unable to read jessie_udp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.317: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.321: INFO: Unable to read jessie_udp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.325: INFO: Unable to read jessie_tcp@dns-test-service.dns-118 from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.328: INFO: Unable to read jessie_udp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.333: INFO: Unable to read jessie_tcp@dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.338: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.342: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-118.svc from pod dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392: the server could not find the requested resource (get pods dns-test-b2179807-3618-4357-9f4b-e5837c4eb392) + Apr 5 19:56:57.357: INFO: Lookups using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-118 wheezy_tcp@dns-test-service.dns-118 wheezy_udp@dns-test-service.dns-118.svc wheezy_tcp@dns-test-service.dns-118.svc wheezy_udp@_http._tcp.dns-test-service.dns-118.svc wheezy_tcp@_http._tcp.dns-test-service.dns-118.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-118 jessie_tcp@dns-test-service.dns-118 jessie_udp@dns-test-service.dns-118.svc jessie_tcp@dns-test-service.dns-118.svc jessie_udp@_http._tcp.dns-test-service.dns-118.svc jessie_tcp@_http._tcp.dns-test-service.dns-118.svc] + + Apr 5 19:57:02.359: INFO: DNS probes using dns-118/dns-test-b2179807-3618-4357-9f4b-e5837c4eb392 succeeded + + STEP: deleting the pod 04/05/23 19:57:02.359 + STEP: deleting the test service 04/05/23 19:57:02.379 + STEP: deleting the test headless service 04/05/23 19:57:02.437 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 19:57:02.453: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-118" for this suite. 04/05/23 19:57:02.459 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] Kubelet when scheduling an agnhost Pod with hostAliases + should write entries to /etc/hosts [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:148 +[BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:57:02.467 +Apr 5 19:57:02.467: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:57:02.468 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:02.488 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:02.491 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 +[It] should write entries to /etc/hosts [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:148 +STEP: Waiting for pod completion 04/05/23 19:57:02.505 +Apr 5 19:57:02.505: INFO: Waiting up to 3m0s for pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b" in namespace "kubelet-test-7849" to be "completed" +Apr 5 19:57:02.512: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 7.120639ms +Apr 5 19:57:04.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012620728s +Apr 5 19:57:06.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012281828s +Apr 5 19:57:08.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012898086s +Apr 5 19:57:10.519: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.013402436s +Apr 5 19:57:10.519: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b" satisfied condition "completed" +[AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 +Apr 5 19:57:10.526: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 +STEP: Destroying namespace "kubelet-test-7849" for this suite. 04/05/23 19:57:10.531 +------------------------------ +• [SLOW TEST] [8.071 seconds] +[sig-node] Kubelet +test/e2e/common/node/framework.go:23 + when scheduling an agnhost Pod with hostAliases + test/e2e/common/node/kubelet.go:140 + should write entries to /etc/hosts [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:148 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:57:02.467 + Apr 5 19:57:02.467: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubelet-test 04/05/23 19:57:02.468 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:02.488 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:02.491 + [BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 + [It] should write entries to /etc/hosts [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:148 + STEP: Waiting for pod completion 04/05/23 19:57:02.505 + Apr 5 19:57:02.505: INFO: Waiting up to 3m0s for pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b" in namespace "kubelet-test-7849" to be "completed" + Apr 5 19:57:02.512: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 7.120639ms + Apr 5 19:57:04.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012620728s + Apr 5 19:57:06.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012281828s + Apr 5 19:57:08.518: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.012898086s + Apr 5 19:57:10.519: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.013402436s + Apr 5 19:57:10.519: INFO: Pod "agnhost-host-aliases84524ece-3cb2-4ee9-aafd-7a8d6085a34b" satisfied condition "completed" + [AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 + Apr 5 19:57:10.526: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 + STEP: Destroying namespace "kubelet-test-7849" for this suite. 04/05/23 19:57:10.531 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] server version + should find the server version [Conformance] + test/e2e/apimachinery/server_version.go:39 +[BeforeEach] [sig-api-machinery] server version + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:57:10.542 +Apr 5 19:57:10.542: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename server-version 04/05/23 19:57:10.543 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:10.558 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:10.56 +[BeforeEach] [sig-api-machinery] server version + test/e2e/framework/metrics/init/init.go:31 +[It] should find the server version [Conformance] + test/e2e/apimachinery/server_version.go:39 +STEP: Request ServerVersion 04/05/23 19:57:10.563 +STEP: Confirm major version 04/05/23 19:57:10.565 +Apr 5 19:57:10.565: INFO: Major version: 1 +STEP: Confirm minor version 04/05/23 19:57:10.565 +Apr 5 19:57:10.565: INFO: cleanMinorVersion: 26 +Apr 5 19:57:10.566: INFO: Minor version: 26 +[AfterEach] [sig-api-machinery] server version + test/e2e/framework/node/init/init.go:32 +Apr 5 19:57:10.566: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] server version + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] server version + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] server version + tear down framework | framework.go:193 +STEP: Destroying namespace "server-version-3496" for this suite. 04/05/23 19:57:10.572 +------------------------------ +• [0.037 seconds] +[sig-api-machinery] server version +test/e2e/apimachinery/framework.go:23 + should find the server version [Conformance] + test/e2e/apimachinery/server_version.go:39 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] server version + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:57:10.542 + Apr 5 19:57:10.542: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename server-version 04/05/23 19:57:10.543 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:10.558 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:10.56 + [BeforeEach] [sig-api-machinery] server version + test/e2e/framework/metrics/init/init.go:31 + [It] should find the server version [Conformance] + test/e2e/apimachinery/server_version.go:39 + STEP: Request ServerVersion 04/05/23 19:57:10.563 + STEP: Confirm major version 04/05/23 19:57:10.565 + Apr 5 19:57:10.565: INFO: Major version: 1 + STEP: Confirm minor version 04/05/23 19:57:10.565 + Apr 5 19:57:10.565: INFO: cleanMinorVersion: 26 + Apr 5 19:57:10.566: INFO: Minor version: 26 + [AfterEach] [sig-api-machinery] server version + test/e2e/framework/node/init/init.go:32 + Apr 5 19:57:10.566: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] server version + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] server version + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] server version + tear down framework | framework.go:193 + STEP: Destroying namespace "server-version-3496" for this suite. 04/05/23 19:57:10.572 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] PriorityClass endpoints + verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/scheduling/preemption.go:814 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:57:10.58 +Apr 5 19:57:10.580: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption 04/05/23 19:57:10.581 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:10.596 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:10.6 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 +Apr 5 19:57:10.619: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 19:58:10.675: INFO: Waiting for terminating namespaces to be deleted... +[BeforeEach] PriorityClass endpoints + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:58:10.679 +Apr 5 19:58:10.680: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption-path 04/05/23 19:58:10.681 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:10.697 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:10.7 +[BeforeEach] PriorityClass endpoints + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:771 +[It] verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/scheduling/preemption.go:814 +Apr 5 19:58:10.718: INFO: PriorityClass.scheduling.k8s.io "p1" is invalid: value: Forbidden: may not be changed in an update. +Apr 5 19:58:10.722: INFO: PriorityClass.scheduling.k8s.io "p2" is invalid: value: Forbidden: may not be changed in an update. +[AfterEach] PriorityClass endpoints + test/e2e/framework/node/init/init.go:32 +Apr 5 19:58:10.741: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:787 +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:58:10.764: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 +[DeferCleanup (Each)] PriorityClass endpoints + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] PriorityClass endpoints + dump namespaces | framework.go:196 +[DeferCleanup (Each)] PriorityClass endpoints + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-path-9202" for this suite. 04/05/23 19:58:10.817 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-5793" for this suite. 04/05/23 19:58:10.826 +------------------------------ +• [SLOW TEST] [60.253 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + PriorityClass endpoints + test/e2e/scheduling/preemption.go:764 + verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/scheduling/preemption.go:814 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:57:10.58 + Apr 5 19:57:10.580: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption 04/05/23 19:57:10.581 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:57:10.596 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:57:10.6 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 + Apr 5 19:57:10.619: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 19:58:10.675: INFO: Waiting for terminating namespaces to be deleted... + [BeforeEach] PriorityClass endpoints + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:58:10.679 + Apr 5 19:58:10.680: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption-path 04/05/23 19:58:10.681 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:10.697 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:10.7 + [BeforeEach] PriorityClass endpoints + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:771 + [It] verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/scheduling/preemption.go:814 + Apr 5 19:58:10.718: INFO: PriorityClass.scheduling.k8s.io "p1" is invalid: value: Forbidden: may not be changed in an update. + Apr 5 19:58:10.722: INFO: PriorityClass.scheduling.k8s.io "p2" is invalid: value: Forbidden: may not be changed in an update. + [AfterEach] PriorityClass endpoints + test/e2e/framework/node/init/init.go:32 + Apr 5 19:58:10.741: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:787 + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:58:10.764: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 + [DeferCleanup (Each)] PriorityClass endpoints + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] PriorityClass endpoints + dump namespaces | framework.go:196 + [DeferCleanup (Each)] PriorityClass endpoints + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-path-9202" for this suite. 04/05/23 19:58:10.817 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-5793" for this suite. 04/05/23 19:58:10.826 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + deployment should support rollover [Conformance] + test/e2e/apps/deployment.go:132 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:58:10.838 +Apr 5 19:58:10.838: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 19:58:10.839 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:10.861 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:10.865 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should support rollover [Conformance] + test/e2e/apps/deployment.go:132 +Apr 5 19:58:10.877: INFO: Pod name rollover-pod: Found 0 pods out of 1 +Apr 5 19:58:15.883: INFO: Pod name rollover-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 19:58:15.883 +Apr 5 19:58:15.884: INFO: Waiting for pods owned by replica set "test-rollover-controller" to become ready +Apr 5 19:58:17.889: INFO: Creating deployment "test-rollover-deployment" +Apr 5 19:58:17.900: INFO: Make sure deployment "test-rollover-deployment" performs scaling operations +Apr 5 19:58:19.909: INFO: Check revision of new replica set for deployment "test-rollover-deployment" +Apr 5 19:58:19.915: INFO: Ensure that both replica sets have 1 created replica +Apr 5 19:58:19.922: INFO: Rollover old replica sets for deployment "test-rollover-deployment" with new image update +Apr 5 19:58:19.931: INFO: Updating deployment test-rollover-deployment +Apr 5 19:58:19.931: INFO: Wait deployment "test-rollover-deployment" to be observed by the deployment controller +Apr 5 19:58:21.941: INFO: Wait for revision update of deployment "test-rollover-deployment" to 2 +Apr 5 19:58:21.947: INFO: Make sure deployment "test-rollover-deployment" is complete +Apr 5 19:58:21.954: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:21.955: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:1, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 20, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:23.965: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:23.965: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:1, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 20, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:25.963: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:25.963: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:27.964: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:27.964: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:29.962: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:29.962: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:31.966: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:31.966: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:33.964: INFO: all replica sets need to contain the pod-template-hash label +Apr 5 19:58:33.964: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:58:35.964: INFO: +Apr 5 19:58:35.964: INFO: Ensure that both old replica sets have no replicas +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 19:58:35.973: INFO: Deployment "test-rollover-deployment": +&Deployment{ObjectMeta:{test-rollover-deployment deployment-5208 64d10738-be5a-4505-a92d-042a383e3dba 129534 2 2023-04-05 19:58:17 +0000 UTC map[name:rollover-pod] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 19:58:19 +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 2023-04-05 19:58: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: rollover-pod,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc003748d18 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:2023-04-05 19:58:17 +0000 UTC,LastTransitionTime:2023-04-05 19:58:17 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rollover-deployment-6c6df9974f" has successfully progressed.,LastUpdateTime:2023-04-05 19:58:34 +0000 UTC,LastTransitionTime:2023-04-05 19:58:17 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Apr 5 19:58:35.977: INFO: New ReplicaSet "test-rollover-deployment-6c6df9974f" of Deployment "test-rollover-deployment": +&ReplicaSet{ObjectMeta:{test-rollover-deployment-6c6df9974f deployment-5208 e68309cf-625c-4360-8e8b-95475846fca0 129522 2 2023-04-05 19:58:19 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-rollover-deployment 64d10738-be5a-4505-a92d-042a383e3dba 0xc0037491c7 0xc0037491c8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:58:19 +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\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"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 2023-04-05 19:58: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: rollover-pod,pod-template-hash: 6c6df9974f,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc003749278 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{},},} +Apr 5 19:58:35.977: INFO: All old ReplicaSets of Deployment "test-rollover-deployment": +Apr 5 19:58:35.977: INFO: &ReplicaSet{ObjectMeta:{test-rollover-controller deployment-5208 4a33890a-09a6-4754-bbf7-de34f8150a9b 129533 2 2023-04-05 19:58:10 +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 64d10738-be5a-4505-a92d-042a383e3dba 0xc003749097 0xc003749098}] [] [{e2e.test Update apps/v1 2023-04-05 19:58:10 +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 2023-04-05 19:58:34 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2023-04-05 19:58:34 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc003749158 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{},},} +Apr 5 19:58:35.977: INFO: &ReplicaSet{ObjectMeta:{test-rollover-deployment-768dcbc65b deployment-5208 e8a4579d-b6b8-4d01-a22f-0095a5e7e71f 129382 2 2023-04-05 19:58:17 +0000 UTC map[name:rollover-pod pod-template-hash:768dcbc65b] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-rollover-deployment 64d10738-be5a-4505-a92d-042a383e3dba 0xc0037492e7 0xc0037492e8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:58:19 +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\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"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 2023-04-05 19:58:19 +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: 768dcbc65b,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:768dcbc65b] 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 0xc003749398 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{},},} +Apr 5 19:58:35.982: INFO: Pod "test-rollover-deployment-6c6df9974f-7srsf" is available: +&Pod{ObjectMeta:{test-rollover-deployment-6c6df9974f-7srsf test-rollover-deployment-6c6df9974f- deployment-5208 d7b2e172-131a-499d-bfda-00066ccbae66 129434 0 2023-04-05 19:58:19 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[] [{apps/v1 ReplicaSet test-rollover-deployment-6c6df9974f e68309cf-625c-4360-8e8b-95475846fca0 0xc0037b66f7 0xc0037b66f8}] [] [{kube-controller-manager Update v1 2023-04-05 19:58:19 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"e68309cf-625c-4360-8e8b-95475846fca0\"}":{}}},"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 2023-04-05 19:58: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\":\"192.168.3.164\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-smrnd,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-smrnd,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:19 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:19 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.164,StartTime:2023-04-05 19:58:19 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:58:24 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/agnhost:2.43,ImageID:registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e,ContainerID:containerd://33d6f382cfb6ee982bae547ef6da70511292147b649983c35a6250431209a844,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.164,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 19:58:35.983: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-5208" for this suite. 04/05/23 19:58:35.99 +------------------------------ +• [SLOW TEST] [25.160 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should support rollover [Conformance] + test/e2e/apps/deployment.go:132 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:58:10.838 + Apr 5 19:58:10.838: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 19:58:10.839 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:10.861 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:10.865 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] deployment should support rollover [Conformance] + test/e2e/apps/deployment.go:132 + Apr 5 19:58:10.877: INFO: Pod name rollover-pod: Found 0 pods out of 1 + Apr 5 19:58:15.883: INFO: Pod name rollover-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 19:58:15.883 + Apr 5 19:58:15.884: INFO: Waiting for pods owned by replica set "test-rollover-controller" to become ready + Apr 5 19:58:17.889: INFO: Creating deployment "test-rollover-deployment" + Apr 5 19:58:17.900: INFO: Make sure deployment "test-rollover-deployment" performs scaling operations + Apr 5 19:58:19.909: INFO: Check revision of new replica set for deployment "test-rollover-deployment" + Apr 5 19:58:19.915: INFO: Ensure that both replica sets have 1 created replica + Apr 5 19:58:19.922: INFO: Rollover old replica sets for deployment "test-rollover-deployment" with new image update + Apr 5 19:58:19.931: INFO: Updating deployment test-rollover-deployment + Apr 5 19:58:19.931: INFO: Wait deployment "test-rollover-deployment" to be observed by the deployment controller + Apr 5 19:58:21.941: INFO: Wait for revision update of deployment "test-rollover-deployment" to 2 + Apr 5 19:58:21.947: INFO: Make sure deployment "test-rollover-deployment" is complete + Apr 5 19:58:21.954: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:21.955: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:1, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 20, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:23.965: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:23.965: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:1, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 20, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:25.963: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:25.963: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:27.964: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:27.964: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:29.962: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:29.962: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:31.966: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:31.966: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:33.964: INFO: all replica sets need to contain the pod-template-hash label + Apr 5 19:58:33.964: 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(2023, time.April, 5, 19, 58, 17, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 58, 24, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 58, 17, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-6c6df9974f\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:58:35.964: INFO: + Apr 5 19:58:35.964: INFO: Ensure that both old replica sets have no replicas + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 19:58:35.973: INFO: Deployment "test-rollover-deployment": + &Deployment{ObjectMeta:{test-rollover-deployment deployment-5208 64d10738-be5a-4505-a92d-042a383e3dba 129534 2 2023-04-05 19:58:17 +0000 UTC map[name:rollover-pod] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2023-04-05 19:58:19 +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 2023-04-05 19:58: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: rollover-pod,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc003748d18 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:2023-04-05 19:58:17 +0000 UTC,LastTransitionTime:2023-04-05 19:58:17 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rollover-deployment-6c6df9974f" has successfully progressed.,LastUpdateTime:2023-04-05 19:58:34 +0000 UTC,LastTransitionTime:2023-04-05 19:58:17 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + + Apr 5 19:58:35.977: INFO: New ReplicaSet "test-rollover-deployment-6c6df9974f" of Deployment "test-rollover-deployment": + &ReplicaSet{ObjectMeta:{test-rollover-deployment-6c6df9974f deployment-5208 e68309cf-625c-4360-8e8b-95475846fca0 129522 2 2023-04-05 19:58:19 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-rollover-deployment 64d10738-be5a-4505-a92d-042a383e3dba 0xc0037491c7 0xc0037491c8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:58:19 +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\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"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 2023-04-05 19:58: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: rollover-pod,pod-template-hash: 6c6df9974f,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc003749278 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{},},} + Apr 5 19:58:35.977: INFO: All old ReplicaSets of Deployment "test-rollover-deployment": + Apr 5 19:58:35.977: INFO: &ReplicaSet{ObjectMeta:{test-rollover-controller deployment-5208 4a33890a-09a6-4754-bbf7-de34f8150a9b 129533 2 2023-04-05 19:58:10 +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 64d10738-be5a-4505-a92d-042a383e3dba 0xc003749097 0xc003749098}] [] [{e2e.test Update apps/v1 2023-04-05 19:58:10 +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 2023-04-05 19:58:34 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2023-04-05 19:58:34 +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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc003749158 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{},},} + Apr 5 19:58:35.977: INFO: &ReplicaSet{ObjectMeta:{test-rollover-deployment-768dcbc65b deployment-5208 e8a4579d-b6b8-4d01-a22f-0095a5e7e71f 129382 2 2023-04-05 19:58:17 +0000 UTC map[name:rollover-pod pod-template-hash:768dcbc65b] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-rollover-deployment 64d10738-be5a-4505-a92d-042a383e3dba 0xc0037492e7 0xc0037492e8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 19:58:19 +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\":\"64d10738-be5a-4505-a92d-042a383e3dba\"}":{}}},"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 2023-04-05 19:58:19 +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: 768dcbc65b,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:768dcbc65b] 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 0xc003749398 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{},},} + Apr 5 19:58:35.982: INFO: Pod "test-rollover-deployment-6c6df9974f-7srsf" is available: + &Pod{ObjectMeta:{test-rollover-deployment-6c6df9974f-7srsf test-rollover-deployment-6c6df9974f- deployment-5208 d7b2e172-131a-499d-bfda-00066ccbae66 129434 0 2023-04-05 19:58:19 +0000 UTC map[name:rollover-pod pod-template-hash:6c6df9974f] map[] [{apps/v1 ReplicaSet test-rollover-deployment-6c6df9974f e68309cf-625c-4360-8e8b-95475846fca0 0xc0037b66f7 0xc0037b66f8}] [] [{kube-controller-manager Update v1 2023-04-05 19:58:19 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"e68309cf-625c-4360-8e8b-95475846fca0\"}":{}}},"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 2023-04-05 19:58: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\":\"192.168.3.164\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-smrnd,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-smrnd,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:19 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 19:58:19 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.164,StartTime:2023-04-05 19:58:19 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 19:58:24 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/agnhost:2.43,ImageID:registry.k8s.io/e2e-test-images/agnhost@sha256:16bbf38c463a4223d8cfe4da12bc61010b082a79b4bb003e2d3ba3ece5dd5f9e,ContainerID:containerd://33d6f382cfb6ee982bae547ef6da70511292147b649983c35a6250431209a844,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.164,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 19:58:35.983: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-5208" for this suite. 04/05/23 19:58:35.99 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-auth] ServiceAccounts + should allow opting out of API token automount [Conformance] + test/e2e/auth/service_accounts.go:161 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:58:36 +Apr 5 19:58:36.000: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:58:36.002 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:36.019 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:36.022 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should allow opting out of API token automount [Conformance] + test/e2e/auth/service_accounts.go:161 +Apr 5 19:58:36.041: INFO: created pod pod-service-account-defaultsa +Apr 5 19:58:36.041: INFO: pod pod-service-account-defaultsa service account token volume mount: true +Apr 5 19:58:36.050: INFO: created pod pod-service-account-mountsa +Apr 5 19:58:36.050: INFO: pod pod-service-account-mountsa service account token volume mount: true +Apr 5 19:58:36.060: INFO: created pod pod-service-account-nomountsa +Apr 5 19:58:36.060: INFO: pod pod-service-account-nomountsa service account token volume mount: false +Apr 5 19:58:36.069: INFO: created pod pod-service-account-defaultsa-mountspec +Apr 5 19:58:36.069: INFO: pod pod-service-account-defaultsa-mountspec service account token volume mount: true +Apr 5 19:58:36.079: INFO: created pod pod-service-account-mountsa-mountspec +Apr 5 19:58:36.079: INFO: pod pod-service-account-mountsa-mountspec service account token volume mount: true +Apr 5 19:58:36.091: INFO: created pod pod-service-account-nomountsa-mountspec +Apr 5 19:58:36.091: INFO: pod pod-service-account-nomountsa-mountspec service account token volume mount: true +Apr 5 19:58:36.095: INFO: created pod pod-service-account-defaultsa-nomountspec +Apr 5 19:58:36.095: INFO: pod pod-service-account-defaultsa-nomountspec service account token volume mount: false +Apr 5 19:58:36.100: INFO: created pod pod-service-account-mountsa-nomountspec +Apr 5 19:58:36.100: INFO: pod pod-service-account-mountsa-nomountspec service account token volume mount: false +Apr 5 19:58:36.109: INFO: created pod pod-service-account-nomountsa-nomountspec +Apr 5 19:58:36.109: INFO: pod pod-service-account-nomountsa-nomountspec service account token volume mount: false +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 19:58:36.109: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-2364" for this suite. 04/05/23 19:58:36.119 +------------------------------ +• [0.128 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should allow opting out of API token automount [Conformance] + test/e2e/auth/service_accounts.go:161 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:58:36 + Apr 5 19:58:36.000: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 19:58:36.002 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:36.019 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:36.022 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should allow opting out of API token automount [Conformance] + test/e2e/auth/service_accounts.go:161 + Apr 5 19:58:36.041: INFO: created pod pod-service-account-defaultsa + Apr 5 19:58:36.041: INFO: pod pod-service-account-defaultsa service account token volume mount: true + Apr 5 19:58:36.050: INFO: created pod pod-service-account-mountsa + Apr 5 19:58:36.050: INFO: pod pod-service-account-mountsa service account token volume mount: true + Apr 5 19:58:36.060: INFO: created pod pod-service-account-nomountsa + Apr 5 19:58:36.060: INFO: pod pod-service-account-nomountsa service account token volume mount: false + Apr 5 19:58:36.069: INFO: created pod pod-service-account-defaultsa-mountspec + Apr 5 19:58:36.069: INFO: pod pod-service-account-defaultsa-mountspec service account token volume mount: true + Apr 5 19:58:36.079: INFO: created pod pod-service-account-mountsa-mountspec + Apr 5 19:58:36.079: INFO: pod pod-service-account-mountsa-mountspec service account token volume mount: true + Apr 5 19:58:36.091: INFO: created pod pod-service-account-nomountsa-mountspec + Apr 5 19:58:36.091: INFO: pod pod-service-account-nomountsa-mountspec service account token volume mount: true + Apr 5 19:58:36.095: INFO: created pod pod-service-account-defaultsa-nomountspec + Apr 5 19:58:36.095: INFO: pod pod-service-account-defaultsa-nomountspec service account token volume mount: false + Apr 5 19:58:36.100: INFO: created pod pod-service-account-mountsa-nomountspec + Apr 5 19:58:36.100: INFO: pod pod-service-account-mountsa-nomountspec service account token volume mount: false + Apr 5 19:58:36.109: INFO: created pod pod-service-account-nomountsa-nomountspec + Apr 5 19:58:36.109: INFO: pod pod-service-account-nomountsa-nomountspec service account token volume mount: false + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 19:58:36.109: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-2364" for this suite. 04/05/23 19:58:36.119 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/apps/job.go:366 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:58:36.129 +Apr 5 19:58:36.129: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 19:58:36.13 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:36.148 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:36.151 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/apps/job.go:366 +STEP: Creating Indexed job 04/05/23 19:58:36.153 +STEP: Ensuring job reaches completions 04/05/23 19:58:36.161 +STEP: Ensuring pods with index for job exist 04/05/23 19:58:52.166 +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 19:58:52.171: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-7095" for this suite. 04/05/23 19:58:52.176 +------------------------------ +• [SLOW TEST] [16.054 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/apps/job.go:366 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:58:36.129 + Apr 5 19:58:36.129: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 19:58:36.13 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:36.148 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:36.151 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/apps/job.go:366 + STEP: Creating Indexed job 04/05/23 19:58:36.153 + STEP: Ensuring job reaches completions 04/05/23 19:58:36.161 + STEP: Ensuring pods with index for job exist 04/05/23 19:58:52.166 + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 19:58:52.171: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-7095" for this suite. 04/05/23 19:58:52.176 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-node] Probing container + with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:72 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:58:52.185 +Apr 5 19:58:52.185: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 19:58:52.186 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:52.202 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:52.205 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:72 +Apr 5 19:58:52.216: INFO: Waiting up to 5m0s for pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632" in namespace "container-probe-1961" to be "running and ready" +Apr 5 19:58:52.223: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 7.397074ms +Apr 5 19:58:52.223: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:58:54.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012110693s +Apr 5 19:58:54.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:58:56.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012811694s +Apr 5 19:58:56.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:58:58.227: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 6.011568813s +Apr 5 19:58:58.227: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:00.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 8.012083667s +Apr 5 19:59:00.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:02.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 10.012931769s +Apr 5 19:59:02.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:04.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 12.013717479s +Apr 5 19:59:04.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:06.227: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 14.01169738s +Apr 5 19:59:06.227: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:08.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 16.012305134s +Apr 5 19:59:08.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:10.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 18.012389067s +Apr 5 19:59:10.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:12.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 20.012148163s +Apr 5 19:59:12.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) +Apr 5 19:59:14.237: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=true. Elapsed: 22.020848608s +Apr 5 19:59:14.237: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = true) +Apr 5 19:59:14.237: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632" satisfied condition "running and ready" +Apr 5 19:59:14.242: INFO: Container started at 2023-04-05 19:58:55 +0000 UTC, pod became ready at 2023-04-05 19:59:12 +0000 UTC +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 19:59:14.242: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-1961" for this suite. 04/05/23 19:59:14.248 +------------------------------ +• [SLOW TEST] [22.071 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/common/node/container_probe.go:72 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:58:52.185 + Apr 5 19:58:52.185: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 19:58:52.186 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:58:52.202 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:58:52.205 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:72 + Apr 5 19:58:52.216: INFO: Waiting up to 5m0s for pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632" in namespace "container-probe-1961" to be "running and ready" + Apr 5 19:58:52.223: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 7.397074ms + Apr 5 19:58:52.223: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:58:54.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012110693s + Apr 5 19:58:54.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:58:56.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012811694s + Apr 5 19:58:56.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:58:58.227: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 6.011568813s + Apr 5 19:58:58.227: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:00.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 8.012083667s + Apr 5 19:59:00.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:02.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 10.012931769s + Apr 5 19:59:02.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:04.229: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 12.013717479s + Apr 5 19:59:04.229: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:06.227: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 14.01169738s + Apr 5 19:59:06.227: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:08.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 16.012305134s + Apr 5 19:59:08.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:10.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 18.012389067s + Apr 5 19:59:10.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:12.228: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=false. Elapsed: 20.012148163s + Apr 5 19:59:12.228: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = false) + Apr 5 19:59:14.237: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632": Phase="Running", Reason="", readiness=true. Elapsed: 22.020848608s + Apr 5 19:59:14.237: INFO: The phase of Pod test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632 is Running (Ready = true) + Apr 5 19:59:14.237: INFO: Pod "test-webserver-51fbe584-5c1f-4e5b-9144-db0bf8657632" satisfied condition "running and ready" + Apr 5 19:59:14.242: INFO: Container started at 2023-04-05 19:58:55 +0000 UTC, pod became ready at 2023-04-05 19:59:12 +0000 UTC + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 19:59:14.242: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-1961" for this suite. 04/05/23 19:59:14.248 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource with different stored version [Conformance] + test/e2e/apimachinery/webhook.go:323 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:14.259 +Apr 5 19:59:14.259: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 19:59:14.26 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:14.275 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:14.277 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 19:59:14.295 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:59:14.646 +STEP: Deploying the webhook pod 04/05/23 19:59:14.654 +STEP: Wait for the deployment to be ready 04/05/23 19:59:14.666 +Apr 5 19:59:14.680: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 19:59:16.693: 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(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 19:59:18.697: 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(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 19:59:20.697 +STEP: Verifying the service has paired with the endpoint 04/05/23 19:59:20.723 +Apr 5 19:59:21.723: 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/apimachinery/webhook.go:323 +Apr 5 19:59:21.729: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-8943-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 19:59:22.241 +STEP: Creating a custom resource while v1 is storage version 04/05/23 19:59:22.258 +STEP: Patching Custom Resource Definition to set v2 as storage 04/05/23 19:59:24.327 +STEP: Patching the custom resource while v2 is storage version 04/05/23 19:59:24.334 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 19:59:24.938: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-24" for this suite. 04/05/23 19:59:25.017 +STEP: Destroying namespace "webhook-24-markers" for this suite. 04/05/23 19:59:25.029 +------------------------------ +• [SLOW TEST] [10.780 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource with different stored version [Conformance] + test/e2e/apimachinery/webhook.go:323 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:14.259 + Apr 5 19:59:14.259: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 19:59:14.26 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:14.275 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:14.277 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 19:59:14.295 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 19:59:14.646 + STEP: Deploying the webhook pod 04/05/23 19:59:14.654 + STEP: Wait for the deployment to be ready 04/05/23 19:59:14.666 + Apr 5 19:59:14.680: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 19:59:16.693: 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(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 19:59:18.697: 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(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 19, 59, 14, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 19:59:20.697 + STEP: Verifying the service has paired with the endpoint 04/05/23 19:59:20.723 + Apr 5 19:59:21.723: 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/apimachinery/webhook.go:323 + Apr 5 19:59:21.729: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Registering the mutating webhook for custom resource e2e-test-webhook-8943-crds.webhook.example.com via the AdmissionRegistration API 04/05/23 19:59:22.241 + STEP: Creating a custom resource while v1 is storage version 04/05/23 19:59:22.258 + STEP: Patching Custom Resource Definition to set v2 as storage 04/05/23 19:59:24.327 + STEP: Patching the custom resource while v2 is storage version 04/05/23 19:59:24.334 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 19:59:24.938: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-24" for this suite. 04/05/23 19:59:25.017 + STEP: Destroying namespace "webhook-24-markers" for this suite. 04/05/23 19:59:25.029 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:212 +[BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:25.046 +Apr 5 19:59:25.047: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:59:25.048 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:25.063 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:25.073 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 +STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:59:25.097 +Apr 5 19:59:25.108: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-2746" to be "running and ready" +Apr 5 19:59:25.114: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 5.968425ms +Apr 5 19:59:25.114: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:27.120: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01164163s +Apr 5 19:59:27.120: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:29.120: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011577434s +Apr 5 19:59:29.120: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:31.120: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.011820286s +Apr 5 19:59:31.120: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) +Apr 5 19:59:31.120: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" +[It] should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:212 +STEP: create the pod with lifecycle hook 04/05/23 19:59:31.124 +Apr 5 19:59:31.130: INFO: Waiting up to 5m0s for pod "pod-with-prestop-http-hook" in namespace "container-lifecycle-hook-2746" to be "running and ready" +Apr 5 19:59:31.134: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 3.485955ms +Apr 5 19:59:31.134: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:33.138: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007989781s +Apr 5 19:59:33.138: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:35.139: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008938185s +Apr 5 19:59:35.139: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 19:59:37.138: INFO: Pod "pod-with-prestop-http-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.007524042s +Apr 5 19:59:37.138: INFO: The phase of Pod pod-with-prestop-http-hook is Running (Ready = true) +Apr 5 19:59:37.138: INFO: Pod "pod-with-prestop-http-hook" satisfied condition "running and ready" +STEP: delete the pod with lifecycle hook 04/05/23 19:59:37.141 +Apr 5 19:59:37.150: INFO: Waiting for pod pod-with-prestop-http-hook to disappear +Apr 5 19:59:37.154: INFO: Pod pod-with-prestop-http-hook still exists +Apr 5 19:59:39.155: INFO: Waiting for pod pod-with-prestop-http-hook to disappear +Apr 5 19:59:39.160: INFO: Pod pod-with-prestop-http-hook no longer exists +STEP: check prestop hook 04/05/23 19:59:39.16 +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 +Apr 5 19:59:39.176: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 +STEP: Destroying namespace "container-lifecycle-hook-2746" for this suite. 04/05/23 19:59:39.182 +------------------------------ +• [SLOW TEST] [14.143 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/common/node/lifecycle_hook.go:212 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:25.046 + Apr 5 19:59:25.047: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 19:59:25.048 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:25.063 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:25.073 + [BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 + STEP: create the container to handle the HTTPGet hook request. 04/05/23 19:59:25.097 + Apr 5 19:59:25.108: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-2746" to be "running and ready" + Apr 5 19:59:25.114: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 5.968425ms + Apr 5 19:59:25.114: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:27.120: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01164163s + Apr 5 19:59:27.120: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:29.120: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011577434s + Apr 5 19:59:29.120: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:31.120: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.011820286s + Apr 5 19:59:31.120: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) + Apr 5 19:59:31.120: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" + [It] should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:212 + STEP: create the pod with lifecycle hook 04/05/23 19:59:31.124 + Apr 5 19:59:31.130: INFO: Waiting up to 5m0s for pod "pod-with-prestop-http-hook" in namespace "container-lifecycle-hook-2746" to be "running and ready" + Apr 5 19:59:31.134: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 3.485955ms + Apr 5 19:59:31.134: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:33.138: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007989781s + Apr 5 19:59:33.138: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:35.139: INFO: Pod "pod-with-prestop-http-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008938185s + Apr 5 19:59:35.139: INFO: The phase of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 19:59:37.138: INFO: Pod "pod-with-prestop-http-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.007524042s + Apr 5 19:59:37.138: INFO: The phase of Pod pod-with-prestop-http-hook is Running (Ready = true) + Apr 5 19:59:37.138: INFO: Pod "pod-with-prestop-http-hook" satisfied condition "running and ready" + STEP: delete the pod with lifecycle hook 04/05/23 19:59:37.141 + Apr 5 19:59:37.150: INFO: Waiting for pod pod-with-prestop-http-hook to disappear + Apr 5 19:59:37.154: INFO: Pod pod-with-prestop-http-hook still exists + Apr 5 19:59:39.155: INFO: Waiting for pod pod-with-prestop-http-hook to disappear + Apr 5 19:59:39.160: INFO: Pod pod-with-prestop-http-hook no longer exists + STEP: check prestop hook 04/05/23 19:59:39.16 + [AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 + Apr 5 19:59:39.176: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 + STEP: Destroying namespace "container-lifecycle-hook-2746" for this suite. 04/05/23 19:59:39.182 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should fail to create ConfigMap with empty key [Conformance] + test/e2e/common/node/configmap.go:138 +[BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:39.191 +Apr 5 19:59:39.191: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 19:59:39.192 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:39.206 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:39.21 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should fail to create ConfigMap with empty key [Conformance] + test/e2e/common/node/configmap.go:138 +STEP: Creating configMap that has name configmap-test-emptyKey-815fc678-5b5b-4291-85e3-f317e1cb3e24 04/05/23 19:59:39.214 +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 19:59:39.216: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-1219" for this suite. 04/05/23 19:59:39.221 +------------------------------ +• [0.037 seconds] +[sig-node] ConfigMap +test/e2e/common/node/framework.go:23 + should fail to create ConfigMap with empty key [Conformance] + test/e2e/common/node/configmap.go:138 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:39.191 + Apr 5 19:59:39.191: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 19:59:39.192 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:39.206 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:39.21 + [BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should fail to create ConfigMap with empty key [Conformance] + test/e2e/common/node/configmap.go:138 + STEP: Creating configMap that has name configmap-test-emptyKey-815fc678-5b5b-4291-85e3-f317e1cb3e24 04/05/23 19:59:39.214 + [AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 19:59:39.216: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-1219" for this suite. 04/05/23 19:59:39.221 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-node] Pods + should be submitted and removed [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:226 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:39.228 +Apr 5 19:59:39.228: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 19:59:39.229 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:39.244 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:39.246 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should be submitted and removed [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:226 +STEP: creating the pod 04/05/23 19:59:39.25 +STEP: setting up watch 04/05/23 19:59:39.25 +STEP: submitting the pod to kubernetes 04/05/23 19:59:39.354 +STEP: verifying the pod is in kubernetes 04/05/23 19:59:39.364 +STEP: verifying pod creation was observed 04/05/23 19:59:39.367 +Apr 5 19:59:39.367: INFO: Waiting up to 5m0s for pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea" in namespace "pods-2363" to be "running" +Apr 5 19:59:39.372: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 4.543094ms +Apr 5 19:59:41.378: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010332655s +Apr 5 19:59:43.378: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010701023s +Apr 5 19:59:45.377: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Running", Reason="", readiness=true. Elapsed: 6.009661235s +Apr 5 19:59:45.377: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea" satisfied condition "running" +STEP: deleting the pod gracefully 04/05/23 19:59:45.38 +STEP: verifying pod deletion was observed 04/05/23 19:59:45.389 +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 19:59:46.586: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-2363" for this suite. 04/05/23 19:59:46.592 +------------------------------ +• [SLOW TEST] [7.371 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should be submitted and removed [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:226 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:39.228 + Apr 5 19:59:39.228: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 19:59:39.229 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:39.244 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:39.246 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should be submitted and removed [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:226 + STEP: creating the pod 04/05/23 19:59:39.25 + STEP: setting up watch 04/05/23 19:59:39.25 + STEP: submitting the pod to kubernetes 04/05/23 19:59:39.354 + STEP: verifying the pod is in kubernetes 04/05/23 19:59:39.364 + STEP: verifying pod creation was observed 04/05/23 19:59:39.367 + Apr 5 19:59:39.367: INFO: Waiting up to 5m0s for pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea" in namespace "pods-2363" to be "running" + Apr 5 19:59:39.372: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 4.543094ms + Apr 5 19:59:41.378: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010332655s + Apr 5 19:59:43.378: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010701023s + Apr 5 19:59:45.377: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea": Phase="Running", Reason="", readiness=true. Elapsed: 6.009661235s + Apr 5 19:59:45.377: INFO: Pod "pod-submit-remove-c6298a5f-d64c-48bf-a0e7-dbb84723efea" satisfied condition "running" + STEP: deleting the pod gracefully 04/05/23 19:59:45.38 + STEP: verifying pod deletion was observed 04/05/23 19:59:45.389 + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 19:59:46.586: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-2363" for this suite. 04/05/23 19:59:46.592 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:194 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:46.616 +Apr 5 19:59:46.616: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:59:46.617 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:46.63 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:46.634 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:194 +Apr 5 19:59:46.638: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 19:59:51.715 +Apr 5 19:59:51.715: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 create -f -' +Apr 5 19:59:53.312: INFO: stderr: "" +Apr 5 19:59:53.312: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" +Apr 5 19:59:53.312: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 delete e2e-test-crd-publish-openapi-1751-crds test-cr' +Apr 5 19:59:53.429: INFO: stderr: "" +Apr 5 19:59:53.429: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" +Apr 5 19:59:53.429: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 apply -f -' +Apr 5 19:59:53.846: INFO: stderr: "" +Apr 5 19:59:53.846: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" +Apr 5 19:59:53.846: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 delete e2e-test-crd-publish-openapi-1751-crds test-cr' +Apr 5 19:59:53.978: INFO: stderr: "" +Apr 5 19:59:53.978: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR 04/05/23 19:59:53.978 +Apr 5 19:59:53.978: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 explain e2e-test-crd-publish-openapi-1751-crds' +Apr 5 19:59:54.384: INFO: stderr: "" +Apr 5 19:59:54.384: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-1751-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/node/init/init.go:32 +Apr 5 19:59:58.037: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-6816" for this suite. 04/05/23 19:59:58.048 +------------------------------ +• [SLOW TEST] [11.441 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/apimachinery/crd_publish_openapi.go:194 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:46.616 + Apr 5 19:59:46.616: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 19:59:46.617 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:46.63 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:46.634 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:194 + Apr 5 19:59:46.638: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties 04/05/23 19:59:51.715 + Apr 5 19:59:51.715: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 create -f -' + Apr 5 19:59:53.312: INFO: stderr: "" + Apr 5 19:59:53.312: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" + Apr 5 19:59:53.312: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 delete e2e-test-crd-publish-openapi-1751-crds test-cr' + Apr 5 19:59:53.429: INFO: stderr: "" + Apr 5 19:59:53.429: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" + Apr 5 19:59:53.429: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 apply -f -' + Apr 5 19:59:53.846: INFO: stderr: "" + Apr 5 19:59:53.846: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" + Apr 5 19:59:53.846: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 --namespace=crd-publish-openapi-6816 delete e2e-test-crd-publish-openapi-1751-crds test-cr' + Apr 5 19:59:53.978: INFO: stderr: "" + Apr 5 19:59:53.978: INFO: stdout: "e2e-test-crd-publish-openapi-1751-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" + STEP: kubectl explain works to explain CR 04/05/23 19:59:53.978 + Apr 5 19:59:53.978: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=crd-publish-openapi-6816 explain e2e-test-crd-publish-openapi-1751-crds' + Apr 5 19:59:54.384: INFO: stderr: "" + Apr 5 19:59:54.384: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-1751-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/node/init/init.go:32 + Apr 5 19:59:58.037: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-6816" for this suite. 04/05/23 19:59:58.048 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:74 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 19:59:58.058 +Apr 5 19:59:58.058: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 19:59:58.059 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:58.072 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:58.075 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:74 +STEP: Creating configMap with name projected-configmap-test-volume-0e860533-4720-4ddb-885c-754f75bfd80c 04/05/23 19:59:58.078 +STEP: Creating a pod to test consume configMaps 04/05/23 19:59:58.083 +Apr 5 19:59:58.090: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb" in namespace "projected-5836" to be "Succeeded or Failed" +Apr 5 19:59:58.094: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 3.264784ms +Apr 5 20:00:00.099: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008680907s +Apr 5 20:00:02.097: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006871726s +Apr 5 20:00:04.097: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006895525s +Apr 5 20:00:06.098: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007375351s +STEP: Saw pod success 04/05/23 20:00:06.098 +Apr 5 20:00:06.098: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb" satisfied condition "Succeeded or Failed" +Apr 5 20:00:06.102: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb container agnhost-container: +STEP: delete the pod 04/05/23 20:00:06.109 +Apr 5 20:00:06.125: INFO: Waiting for pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb to disappear +Apr 5 20:00:06.129: INFO: Pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:00:06.129: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-5836" for this suite. 04/05/23 20:00:06.135 +------------------------------ +• [SLOW TEST] [8.085 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/common/storage/projected_configmap.go:74 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 19:59:58.058 + Apr 5 19:59:58.058: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 19:59:58.059 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 19:59:58.072 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 19:59:58.075 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:74 + STEP: Creating configMap with name projected-configmap-test-volume-0e860533-4720-4ddb-885c-754f75bfd80c 04/05/23 19:59:58.078 + STEP: Creating a pod to test consume configMaps 04/05/23 19:59:58.083 + Apr 5 19:59:58.090: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb" in namespace "projected-5836" to be "Succeeded or Failed" + Apr 5 19:59:58.094: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 3.264784ms + Apr 5 20:00:00.099: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008680907s + Apr 5 20:00:02.097: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006871726s + Apr 5 20:00:04.097: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Pending", Reason="", readiness=false. Elapsed: 6.006895525s + Apr 5 20:00:06.098: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007375351s + STEP: Saw pod success 04/05/23 20:00:06.098 + Apr 5 20:00:06.098: INFO: Pod "pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb" satisfied condition "Succeeded or Failed" + Apr 5 20:00:06.102: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb container agnhost-container: + STEP: delete the pod 04/05/23 20:00:06.109 + Apr 5 20:00:06.125: INFO: Waiting for pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb to disappear + Apr 5 20:00:06.129: INFO: Pod pod-projected-configmaps-dca357bb-53d5-4049-bfab-cf1d5efd98cb no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:00:06.129: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-5836" for this suite. 04/05/23 20:00:06.135 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSlice + should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/network/endpointslice.go:205 +[BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:00:06.151 +Apr 5 20:00:06.151: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename endpointslice 04/05/23 20:00:06.152 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:06.169 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:06.171 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 +[It] should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/network/endpointslice.go:205 +STEP: referencing a single matching pod 04/05/23 20:00:11.309 +STEP: referencing matching pods with named port 04/05/23 20:00:16.317 +STEP: creating empty Endpoints and EndpointSlices for no matching Pods 04/05/23 20:00:21.326 +STEP: recreating EndpointSlices after they've been deleted 04/05/23 20:00:26.335 +Apr 5 20:00:26.356: INFO: EndpointSlice for Service endpointslice-124/example-named-port not found +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 +Apr 5 20:00:36.368: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 +STEP: Destroying namespace "endpointslice-124" for this suite. 04/05/23 20:00:36.374 +------------------------------ +• [SLOW TEST] [30.232 seconds] +[sig-network] EndpointSlice +test/e2e/network/common/framework.go:23 + should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/network/endpointslice.go:205 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:00:06.151 + Apr 5 20:00:06.151: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename endpointslice 04/05/23 20:00:06.152 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:06.169 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:06.171 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 + [It] should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/network/endpointslice.go:205 + STEP: referencing a single matching pod 04/05/23 20:00:11.309 + STEP: referencing matching pods with named port 04/05/23 20:00:16.317 + STEP: creating empty Endpoints and EndpointSlices for no matching Pods 04/05/23 20:00:21.326 + STEP: recreating EndpointSlices after they've been deleted 04/05/23 20:00:26.335 + Apr 5 20:00:26.356: INFO: EndpointSlice for Service endpointslice-124/example-named-port not found + [AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 + Apr 5 20:00:36.368: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 + STEP: Destroying namespace "endpointslice-124" for this suite. 04/05/23 20:00:36.374 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:125 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:00:36.385 +Apr 5 20:00:36.386: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:00:36.387 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:36.405 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:36.408 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:125 +STEP: Creating secret with name secret-test-99753984-5bd0-45d4-a63e-7f35b157bdc7 04/05/23 20:00:36.411 +STEP: Creating a pod to test consume secrets 04/05/23 20:00:36.416 +Apr 5 20:00:36.424: INFO: Waiting up to 5m0s for pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75" in namespace "secrets-9088" to be "Succeeded or Failed" +Apr 5 20:00:36.428: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 4.057106ms +Apr 5 20:00:38.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008542033s +Apr 5 20:00:40.440: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015207374s +Apr 5 20:00:42.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008685133s +Apr 5 20:00:44.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 8.008697534s +Apr 5 20:00:46.434: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Succeeded", Reason="", readiness=false. Elapsed: 10.009555574s +STEP: Saw pod success 04/05/23 20:00:46.434 +Apr 5 20:00:46.434: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75" satisfied condition "Succeeded or Failed" +Apr 5 20:00:46.438: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 container secret-volume-test: +STEP: delete the pod 04/05/23 20:00:46.445 +Apr 5 20:00:46.459: INFO: Waiting for pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 to disappear +Apr 5 20:00:46.462: INFO: Pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:00:46.463: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-9088" for this suite. 04/05/23 20:00:46.469 +------------------------------ +• [SLOW TEST] [10.090 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:125 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:00:36.385 + Apr 5 20:00:36.386: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:00:36.387 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:36.405 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:36.408 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:125 + STEP: Creating secret with name secret-test-99753984-5bd0-45d4-a63e-7f35b157bdc7 04/05/23 20:00:36.411 + STEP: Creating a pod to test consume secrets 04/05/23 20:00:36.416 + Apr 5 20:00:36.424: INFO: Waiting up to 5m0s for pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75" in namespace "secrets-9088" to be "Succeeded or Failed" + Apr 5 20:00:36.428: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 4.057106ms + Apr 5 20:00:38.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008542033s + Apr 5 20:00:40.440: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015207374s + Apr 5 20:00:42.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008685133s + Apr 5 20:00:44.433: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Pending", Reason="", readiness=false. Elapsed: 8.008697534s + Apr 5 20:00:46.434: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75": Phase="Succeeded", Reason="", readiness=false. Elapsed: 10.009555574s + STEP: Saw pod success 04/05/23 20:00:46.434 + Apr 5 20:00:46.434: INFO: Pod "pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75" satisfied condition "Succeeded or Failed" + Apr 5 20:00:46.438: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 container secret-volume-test: + STEP: delete the pod 04/05/23 20:00:46.445 + Apr 5 20:00:46.459: INFO: Waiting for pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 to disappear + Apr 5 20:00:46.462: INFO: Pod pod-secrets-87518ece-3523-4f90-ac74-97dc8a8bab75 no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:00:46.463: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-9088" for this suite. 04/05/23 20:00:46.469 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + should run the lifecycle of a Deployment [Conformance] + test/e2e/apps/deployment.go:185 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:00:46.482 +Apr 5 20:00:46.482: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 20:00:46.483 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:46.498 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:46.501 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] should run the lifecycle of a Deployment [Conformance] + test/e2e/apps/deployment.go:185 +STEP: creating a Deployment 04/05/23 20:00:46.509 +STEP: waiting for Deployment to be created 04/05/23 20:00:46.515 +STEP: waiting for all Replicas to be Ready 04/05/23 20:00:46.517 +Apr 5 20:00:46.519: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.519: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.529: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.529: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.542: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.542: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.570: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:46.570: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Apr 5 20:00:50.787: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment-static:true] +Apr 5 20:00:50.787: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment-static:true] +Apr 5 20:00:50.809: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment-static:true] +STEP: patching the Deployment 04/05/23 20:00:50.809 +W0405 20:00:50.821040 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" +Apr 5 20:00:50.823: INFO: observed event type ADDED +STEP: waiting for Replicas to scale 04/05/23 20:00:50.823 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 +Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.834: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.834: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.850: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.851: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:50.864: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:50.864: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:50.871: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:50.871: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:00:54.806: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:54.806: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:00:54.831: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +STEP: listing Deployments 04/05/23 20:00:54.831 +Apr 5 20:00:54.837: INFO: Found test-deployment with labels: map[test-deployment:patched test-deployment-static:true] +STEP: updating the Deployment 04/05/23 20:00:54.837 +Apr 5 20:00:54.848: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +STEP: fetching the DeploymentStatus 04/05/23 20:00:54.848 +Apr 5 20:00:54.856: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:54.856: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:54.872: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:54.899: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:54.905: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:58.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:58.845: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:58.860: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:00:58.877: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Apr 5 20:01:02.858: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 3 and labels map[test-deployment:updated test-deployment-static:true] +STEP: patching the DeploymentStatus 04/05/23 20:01:02.88 +STEP: fetching the DeploymentStatus 04/05/23 20:01:02.888 +Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:01:02.896: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:01:02.896: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 +Apr 5 20:01:02.897: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:01:02.897: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 +Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 3 +STEP: deleting the Deployment 04/05/23 20:01:02.898 +Apr 5 20:01:02.909: INFO: observed event type MODIFIED +Apr 5 20:01:02.910: INFO: observed event type MODIFIED +Apr 5 20:01:02.911: INFO: observed event type MODIFIED +Apr 5 20:01:02.911: INFO: observed event type MODIFIED +Apr 5 20:01:02.912: INFO: observed event type MODIFIED +Apr 5 20:01:02.912: INFO: observed event type MODIFIED +Apr 5 20:01:02.913: INFO: observed event type MODIFIED +Apr 5 20:01:02.913: INFO: observed event type MODIFIED +Apr 5 20:01:02.914: INFO: observed event type MODIFIED +Apr 5 20:01:02.914: INFO: observed event type MODIFIED +Apr 5 20:01:02.915: INFO: observed event type MODIFIED +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 20:01:02.926: INFO: Log out all the ReplicaSets if there is no deployment created +Apr 5 20:01:02.934: INFO: ReplicaSet "test-deployment-7b7876f9d6": +&ReplicaSet{ObjectMeta:{test-deployment-7b7876f9d6 deployment-5710 009e6cba-1339-4e34-8837-41c26cf25f5f 131549 2 2023-04-05 20:00:54 +0000 UTC map[pod-template-hash:7b7876f9d6 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a606b7 0xc000a606b8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:00:58 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:01:02 +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: 7b7876f9d6,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc000a60770 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{},},} + +Apr 5 20:01:02.941: INFO: pod: "test-deployment-7b7876f9d6-jlctb": +&Pod{ObjectMeta:{test-deployment-7b7876f9d6-jlctb test-deployment-7b7876f9d6- deployment-5710 a05f6804-5cee-4f8d-a5c5-b0429c15a8fa 131548 0 2023-04-05 20:00:58 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7b7876f9d6 009e6cba-1339-4e34-8837-41c26cf25f5f 0xc000a61e47 0xc000a61e48}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:58 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"009e6cba-1339-4e34-8837-41c26cf25f5f\"}":{}}},"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 2023-04-05 20:01:02 +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\":\"192.168.1.167\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-w9n88,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-w9n88,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:01:02 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:01:02 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.167,StartTime:2023-04-05 20:00:58 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:01:02 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://c4b23e9382067eef54b298d3036515f55a177f1fa26444d64a544bbd20be96da,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.167,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +Apr 5 20:01:02.941: INFO: pod: "test-deployment-7b7876f9d6-ksqj6": +&Pod{ObjectMeta:{test-deployment-7b7876f9d6-ksqj6 test-deployment-7b7876f9d6- deployment-5710 28b950f8-d635-4858-968f-900165e77151 131483 0 2023-04-05 20:00:54 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7b7876f9d6 009e6cba-1339-4e34-8837-41c26cf25f5f 0xc00160a187 0xc00160a188}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:54 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"009e6cba-1339-4e34-8837-41c26cf25f5f\"}":{}}},"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 2023-04-05 20:00:58 +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\":\"192.168.3.154\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-bttmv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-bttmv,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.154,StartTime:2023-04-05 20:00:54 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:00:58 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://72316a6cf8e072ebde49baf1fb5c77008862f3be22440c3fa3777e711097a6e9,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.154,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +Apr 5 20:01:02.941: INFO: ReplicaSet "test-deployment-7df74c55ff": +&ReplicaSet{ObjectMeta:{test-deployment-7df74c55ff deployment-5710 d463698e-6c78-46a1-9b1c-ddcaa0673a0d 131557 4 2023-04-05 20:00:50 +0000 UTC map[pod-template-hash:7df74c55ff 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a607d7 0xc000a607d8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:01:02 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:01:02 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: 7df74c55ff,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:7df74c55ff test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/pause:3.9 [] [] [] [] [] {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 0xc000a60ae0 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{},},} + +Apr 5 20:01:02.946: INFO: pod: "test-deployment-7df74c55ff-lbzmv": +&Pod{ObjectMeta:{test-deployment-7df74c55ff-lbzmv test-deployment-7df74c55ff- deployment-5710 819f2c20-f138-41aa-9d51-06046de05153 131552 0 2023-04-05 20:00:50 +0000 UTC 2023-04-05 20:01:03 +0000 UTC 0xc006463288 map[pod-template-hash:7df74c55ff test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7df74c55ff d463698e-6c78-46a1-9b1c-ddcaa0673a0d 0xc0064632b7 0xc0064632b8}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:50 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"d463698e-6c78-46a1-9b1c-ddcaa0673a0d\"}":{}}},"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 2023-04-05 20:00:54 +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\":\"192.168.3.238\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-p6dw8,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:registry.k8s.io/pause:3.9,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-p6dw8,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:50 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:50 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.238,StartTime:2023-04-05 20:00:50 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:00:54 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/pause:3.9,ImageID:registry.k8s.io/pause@sha256:7031c1b283388d2c2e09b57badb803c05ebed362dc88d84b480cc47f72a21097,ContainerID:containerd://4af429899eaa297d336f61517b5274c419bc628d338893e59428e867b80d4d81,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.238,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +Apr 5 20:01:02.946: INFO: ReplicaSet "test-deployment-f4dbc4647": +&ReplicaSet{ObjectMeta:{test-deployment-f4dbc4647 deployment-5710 fb5533ba-0dac-4f46-a818-b964e3e416b3 131413 3 2023-04-05 20:00:46 +0000 UTC map[pod-template-hash:f4dbc4647 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a60c87 0xc000a60c88}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:00:54 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:00:54 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: f4dbc4647,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:f4dbc4647 test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc000a61410 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{},},} + +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 20:01:02.953: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-5710" for this suite. 04/05/23 20:01:02.96 +------------------------------ +• [SLOW TEST] [16.488 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + should run the lifecycle of a Deployment [Conformance] + test/e2e/apps/deployment.go:185 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:00:46.482 + Apr 5 20:00:46.482: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 20:00:46.483 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:00:46.498 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:00:46.501 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] should run the lifecycle of a Deployment [Conformance] + test/e2e/apps/deployment.go:185 + STEP: creating a Deployment 04/05/23 20:00:46.509 + STEP: waiting for Deployment to be created 04/05/23 20:00:46.515 + STEP: waiting for all Replicas to be Ready 04/05/23 20:00:46.517 + Apr 5 20:00:46.519: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.519: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.529: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.529: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.542: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.542: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.570: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:46.570: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 and labels map[test-deployment-static:true] + Apr 5 20:00:50.787: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment-static:true] + Apr 5 20:00:50.787: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment-static:true] + Apr 5 20:00:50.809: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment-static:true] + STEP: patching the Deployment 04/05/23 20:00:50.809 + W0405 20:00:50.821040 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" + Apr 5 20:00:50.823: INFO: observed event type ADDED + STEP: waiting for Replicas to scale 04/05/23 20:00:50.823 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 0 + Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:50.827: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.828: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.834: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.834: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.850: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.851: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:50.864: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:50.864: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:50.871: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:50.871: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:00:54.806: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:54.806: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:00:54.831: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + STEP: listing Deployments 04/05/23 20:00:54.831 + Apr 5 20:00:54.837: INFO: Found test-deployment with labels: map[test-deployment:patched test-deployment-static:true] + STEP: updating the Deployment 04/05/23 20:00:54.837 + Apr 5 20:00:54.848: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + STEP: fetching the DeploymentStatus 04/05/23 20:00:54.848 + Apr 5 20:00:54.856: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:54.856: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:54.872: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:54.899: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:54.905: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:58.826: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:58.845: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:58.860: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:00:58.877: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] + Apr 5 20:01:02.858: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 3 and labels map[test-deployment:updated test-deployment-static:true] + STEP: patching the DeploymentStatus 04/05/23 20:01:02.88 + STEP: fetching the DeploymentStatus 04/05/23 20:01:02.888 + Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:01:02.895: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:01:02.896: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:01:02.896: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 1 + Apr 5 20:01:02.897: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:01:02.897: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 2 + Apr 5 20:01:02.898: INFO: observed Deployment test-deployment in namespace deployment-5710 with ReadyReplicas 3 + STEP: deleting the Deployment 04/05/23 20:01:02.898 + Apr 5 20:01:02.909: INFO: observed event type MODIFIED + Apr 5 20:01:02.910: INFO: observed event type MODIFIED + Apr 5 20:01:02.911: INFO: observed event type MODIFIED + Apr 5 20:01:02.911: INFO: observed event type MODIFIED + Apr 5 20:01:02.912: INFO: observed event type MODIFIED + Apr 5 20:01:02.912: INFO: observed event type MODIFIED + Apr 5 20:01:02.913: INFO: observed event type MODIFIED + Apr 5 20:01:02.913: INFO: observed event type MODIFIED + Apr 5 20:01:02.914: INFO: observed event type MODIFIED + Apr 5 20:01:02.914: INFO: observed event type MODIFIED + Apr 5 20:01:02.915: INFO: observed event type MODIFIED + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 20:01:02.926: INFO: Log out all the ReplicaSets if there is no deployment created + Apr 5 20:01:02.934: INFO: ReplicaSet "test-deployment-7b7876f9d6": + &ReplicaSet{ObjectMeta:{test-deployment-7b7876f9d6 deployment-5710 009e6cba-1339-4e34-8837-41c26cf25f5f 131549 2 2023-04-05 20:00:54 +0000 UTC map[pod-template-hash:7b7876f9d6 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a606b7 0xc000a606b8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:00:58 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:01:02 +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: 7b7876f9d6,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {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 0xc000a60770 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{},},} + + Apr 5 20:01:02.941: INFO: pod: "test-deployment-7b7876f9d6-jlctb": + &Pod{ObjectMeta:{test-deployment-7b7876f9d6-jlctb test-deployment-7b7876f9d6- deployment-5710 a05f6804-5cee-4f8d-a5c5-b0429c15a8fa 131548 0 2023-04-05 20:00:58 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7b7876f9d6 009e6cba-1339-4e34-8837-41c26cf25f5f 0xc000a61e47 0xc000a61e48}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:58 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"009e6cba-1339-4e34-8837-41c26cf25f5f\"}":{}}},"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 2023-04-05 20:01:02 +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\":\"192.168.1.167\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-w9n88,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-w9n88,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:ttneyla26-md-0-8474989c68-wbqh5,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:01:02 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:01:02 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.2.92,PodIP:192.168.1.167,StartTime:2023-04-05 20:00:58 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:01:02 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://c4b23e9382067eef54b298d3036515f55a177f1fa26444d64a544bbd20be96da,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.1.167,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + + Apr 5 20:01:02.941: INFO: pod: "test-deployment-7b7876f9d6-ksqj6": + &Pod{ObjectMeta:{test-deployment-7b7876f9d6-ksqj6 test-deployment-7b7876f9d6- deployment-5710 28b950f8-d635-4858-968f-900165e77151 131483 0 2023-04-05 20:00:54 +0000 UTC map[pod-template-hash:7b7876f9d6 test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7b7876f9d6 009e6cba-1339-4e34-8837-41c26cf25f5f 0xc00160a187 0xc00160a188}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:54 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"009e6cba-1339-4e34-8837-41c26cf25f5f\"}":{}}},"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 2023-04-05 20:00:58 +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\":\"192.168.3.154\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-bttmv,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-bttmv,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.154,StartTime:2023-04-05 20:00:54 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:00:58 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://72316a6cf8e072ebde49baf1fb5c77008862f3be22440c3fa3777e711097a6e9,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.154,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + + Apr 5 20:01:02.941: INFO: ReplicaSet "test-deployment-7df74c55ff": + &ReplicaSet{ObjectMeta:{test-deployment-7df74c55ff deployment-5710 d463698e-6c78-46a1-9b1c-ddcaa0673a0d 131557 4 2023-04-05 20:00:50 +0000 UTC map[pod-template-hash:7df74c55ff 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a607d7 0xc000a607d8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:01:02 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:01:02 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: 7df74c55ff,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:7df74c55ff test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/pause:3.9 [] [] [] [] [] {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 0xc000a60ae0 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{},},} + + Apr 5 20:01:02.946: INFO: pod: "test-deployment-7df74c55ff-lbzmv": + &Pod{ObjectMeta:{test-deployment-7df74c55ff-lbzmv test-deployment-7df74c55ff- deployment-5710 819f2c20-f138-41aa-9d51-06046de05153 131552 0 2023-04-05 20:00:50 +0000 UTC 2023-04-05 20:01:03 +0000 UTC 0xc006463288 map[pod-template-hash:7df74c55ff test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-7df74c55ff d463698e-6c78-46a1-9b1c-ddcaa0673a0d 0xc0064632b7 0xc0064632b8}] [] [{kube-controller-manager Update v1 2023-04-05 20:00:50 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"d463698e-6c78-46a1-9b1c-ddcaa0673a0d\"}":{}}},"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 2023-04-05 20:00:54 +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\":\"192.168.3.238\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-p6dw8,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:registry.k8s.io/pause:3.9,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-p6dw8,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:50 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:00:50 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.238,StartTime:2023-04-05 20:00:50 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:00:54 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/pause:3.9,ImageID:registry.k8s.io/pause@sha256:7031c1b283388d2c2e09b57badb803c05ebed362dc88d84b480cc47f72a21097,ContainerID:containerd://4af429899eaa297d336f61517b5274c419bc628d338893e59428e867b80d4d81,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.238,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + + Apr 5 20:01:02.946: INFO: ReplicaSet "test-deployment-f4dbc4647": + &ReplicaSet{ObjectMeta:{test-deployment-f4dbc4647 deployment-5710 fb5533ba-0dac-4f46-a818-b964e3e416b3 131413 3 2023-04-05 20:00:46 +0000 UTC map[pod-template-hash:f4dbc4647 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 1666350e-68c7-4ae1-9c0d-ee47a484ef5c 0xc000a60c87 0xc000a60c88}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:00:54 +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\":\"1666350e-68c7-4ae1-9c0d-ee47a484ef5c\"}":{}}},"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 2023-04-05 20:00:54 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: f4dbc4647,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:f4dbc4647 test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc000a61410 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{},},} + + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 20:01:02.953: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-5710" for this suite. 04/05/23 20:01:02.96 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:99 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:01:02.973 +Apr 5 20:01:02.973: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:01:02.974 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:02.993 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:02.997 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:99 +STEP: Creating configMap with name projected-configmap-test-volume-map-85fb4a5d-ad70-428c-9fee-125947c644fa 04/05/23 20:01:03.001 +STEP: Creating a pod to test consume configMaps 04/05/23 20:01:03.007 +Apr 5 20:01:03.020: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791" in namespace "projected-1831" to be "Succeeded or Failed" +Apr 5 20:01:03.025: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 4.686202ms +Apr 5 20:01:05.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010445331s +Apr 5 20:01:07.030: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009527956s +Apr 5 20:01:09.030: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009467917s +Apr 5 20:01:11.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01032454s +STEP: Saw pod success 04/05/23 20:01:11.031 +Apr 5 20:01:11.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791" satisfied condition "Succeeded or Failed" +Apr 5 20:01:11.035: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 container agnhost-container: +STEP: delete the pod 04/05/23 20:01:11.042 +Apr 5 20:01:11.056: INFO: Waiting for pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 to disappear +Apr 5 20:01:11.059: INFO: Pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:01:11.060: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-1831" for this suite. 04/05/23 20:01:11.066 +------------------------------ +• [SLOW TEST] [8.100 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/common/storage/projected_configmap.go:99 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:01:02.973 + Apr 5 20:01:02.973: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:01:02.974 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:02.993 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:02.997 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:99 + STEP: Creating configMap with name projected-configmap-test-volume-map-85fb4a5d-ad70-428c-9fee-125947c644fa 04/05/23 20:01:03.001 + STEP: Creating a pod to test consume configMaps 04/05/23 20:01:03.007 + Apr 5 20:01:03.020: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791" in namespace "projected-1831" to be "Succeeded or Failed" + Apr 5 20:01:03.025: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 4.686202ms + Apr 5 20:01:05.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010445331s + Apr 5 20:01:07.030: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009527956s + Apr 5 20:01:09.030: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009467917s + Apr 5 20:01:11.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01032454s + STEP: Saw pod success 04/05/23 20:01:11.031 + Apr 5 20:01:11.031: INFO: Pod "pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791" satisfied condition "Succeeded or Failed" + Apr 5 20:01:11.035: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 container agnhost-container: + STEP: delete the pod 04/05/23 20:01:11.042 + Apr 5 20:01:11.056: INFO: Waiting for pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 to disappear + Apr 5 20:01:11.059: INFO: Pod pod-projected-configmaps-8192b053-f8c7-45c0-b892-3af3dca2a791 no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:01:11.060: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-1831" for this suite. 04/05/23 20:01:11.066 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:187 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:01:11.073 +Apr 5 20:01:11.073: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:01:11.074 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:11.089 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:11.092 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:187 +STEP: Creating a pod to test emptydir 0777 on node default medium 04/05/23 20:01:11.095 +Apr 5 20:01:11.104: INFO: Waiting up to 5m0s for pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c" in namespace "emptydir-8412" to be "Succeeded or Failed" +Apr 5 20:01:11.107: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.295087ms +Apr 5 20:01:13.112: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007830344s +Apr 5 20:01:15.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009232248s +Apr 5 20:01:17.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009124816s +Apr 5 20:01:19.112: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008221017s +STEP: Saw pod success 04/05/23 20:01:19.112 +Apr 5 20:01:19.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c" satisfied condition "Succeeded or Failed" +Apr 5 20:01:19.116: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c container test-container: +STEP: delete the pod 04/05/23 20:01:19.126 +Apr 5 20:01:19.143: INFO: Waiting for pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c to disappear +Apr 5 20:01:19.146: INFO: Pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:01:19.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-8412" for this suite. 04/05/23 20:01:19.151 +------------------------------ +• [SLOW TEST] [8.110 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:187 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:01:11.073 + Apr 5 20:01:11.073: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:01:11.074 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:11.089 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:11.092 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:187 + STEP: Creating a pod to test emptydir 0777 on node default medium 04/05/23 20:01:11.095 + Apr 5 20:01:11.104: INFO: Waiting up to 5m0s for pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c" in namespace "emptydir-8412" to be "Succeeded or Failed" + Apr 5 20:01:11.107: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.295087ms + Apr 5 20:01:13.112: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007830344s + Apr 5 20:01:15.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009232248s + Apr 5 20:01:17.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009124816s + Apr 5 20:01:19.112: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008221017s + STEP: Saw pod success 04/05/23 20:01:19.112 + Apr 5 20:01:19.113: INFO: Pod "pod-07b69b7e-2292-4820-86cd-dc36ee99b88c" satisfied condition "Succeeded or Failed" + Apr 5 20:01:19.116: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c container test-container: + STEP: delete the pod 04/05/23 20:01:19.126 + Apr 5 20:01:19.143: INFO: Waiting for pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c to disappear + Apr 5 20:01:19.146: INFO: Pod pod-07b69b7e-2292-4820-86cd-dc36ee99b88c no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:01:19.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-8412" for this suite. 04/05/23 20:01:19.151 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:57 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:01:19.19 +Apr 5 20:01:19.190: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:01:19.191 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:19.207 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:19.212 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:57 +STEP: Creating secret with name secret-test-83e39041-2b06-447b-a701-455cc5161937 04/05/23 20:01:19.215 +STEP: Creating a pod to test consume secrets 04/05/23 20:01:19.222 +Apr 5 20:01:19.233: INFO: Waiting up to 5m0s for pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c" in namespace "secrets-8191" to be "Succeeded or Failed" +Apr 5 20:01:19.239: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 5.421398ms +Apr 5 20:01:21.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01125555s +Apr 5 20:01:23.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010965429s +Apr 5 20:01:25.252: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.019084523s +Apr 5 20:01:27.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010615153s +STEP: Saw pod success 04/05/23 20:01:27.244 +Apr 5 20:01:27.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c" satisfied condition "Succeeded or Failed" +Apr 5 20:01:27.247: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c container secret-volume-test: +STEP: delete the pod 04/05/23 20:01:27.254 +Apr 5 20:01:27.269: INFO: Waiting for pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c to disappear +Apr 5 20:01:27.271: INFO: Pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:01:27.272: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-8191" for this suite. 04/05/23 20:01:27.277 +------------------------------ +• [SLOW TEST] [8.094 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/common/storage/secrets_volume.go:57 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:01:19.19 + Apr 5 20:01:19.190: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:01:19.191 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:19.207 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:19.212 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/secrets_volume.go:57 + STEP: Creating secret with name secret-test-83e39041-2b06-447b-a701-455cc5161937 04/05/23 20:01:19.215 + STEP: Creating a pod to test consume secrets 04/05/23 20:01:19.222 + Apr 5 20:01:19.233: INFO: Waiting up to 5m0s for pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c" in namespace "secrets-8191" to be "Succeeded or Failed" + Apr 5 20:01:19.239: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 5.421398ms + Apr 5 20:01:21.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01125555s + Apr 5 20:01:23.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010965429s + Apr 5 20:01:25.252: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.019084523s + Apr 5 20:01:27.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010615153s + STEP: Saw pod success 04/05/23 20:01:27.244 + Apr 5 20:01:27.244: INFO: Pod "pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c" satisfied condition "Succeeded or Failed" + Apr 5 20:01:27.247: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c container secret-volume-test: + STEP: delete the pod 04/05/23 20:01:27.254 + Apr 5 20:01:27.269: INFO: Waiting for pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c to disappear + Apr 5 20:01:27.271: INFO: Pod pod-secrets-b014ae5e-5cf8-4d9b-8b86-7ae0c06bc12c no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:01:27.272: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-8191" for this suite. 04/05/23 20:01:27.277 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:193 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:01:27.284 +Apr 5 20:01:27.284: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:01:27.285 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:27.3 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:27.303 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:193 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:01:27.306 +Apr 5 20:01:27.317: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada" in namespace "projected-383" to be "Succeeded or Failed" +Apr 5 20:01:27.322: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 5.256654ms +Apr 5 20:01:29.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010173262s +Apr 5 20:01:31.328: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010967806s +Apr 5 20:01:33.328: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010877276s +Apr 5 20:01:35.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009806255s +STEP: Saw pod success 04/05/23 20:01:35.327 +Apr 5 20:01:35.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada" satisfied condition "Succeeded or Failed" +Apr 5 20:01:35.331: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada container client-container: +STEP: delete the pod 04/05/23 20:01:35.338 +Apr 5 20:01:35.350: INFO: Waiting for pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada to disappear +Apr 5 20:01:35.352: INFO: Pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 20:01:35.353: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-383" for this suite. 04/05/23 20:01:35.36 +------------------------------ +• [SLOW TEST] [8.084 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:193 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:01:27.284 + Apr 5 20:01:27.284: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:01:27.285 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:27.3 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:27.303 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:193 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:01:27.306 + Apr 5 20:01:27.317: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada" in namespace "projected-383" to be "Succeeded or Failed" + Apr 5 20:01:27.322: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 5.256654ms + Apr 5 20:01:29.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010173262s + Apr 5 20:01:31.328: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010967806s + Apr 5 20:01:33.328: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010877276s + Apr 5 20:01:35.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009806255s + STEP: Saw pod success 04/05/23 20:01:35.327 + Apr 5 20:01:35.327: INFO: Pod "downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada" satisfied condition "Succeeded or Failed" + Apr 5 20:01:35.331: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada container client-container: + STEP: delete the pod 04/05/23 20:01:35.338 + Apr 5 20:01:35.350: INFO: Waiting for pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada to disappear + Apr 5 20:01:35.352: INFO: Pod downwardapi-volume-e9b51c35-05d7-4d2c-a52e-7e3c2f65eada no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 20:01:35.353: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-383" for this suite. 04/05/23 20:01:35.36 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with secret pod [Conformance] + test/e2e/storage/subpath.go:60 +[BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:01:35.371 +Apr 5 20:01:35.371: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename subpath 04/05/23 20:01:35.372 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:35.393 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:35.396 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data 04/05/23 20:01:35.399 +[It] should support subpaths with secret pod [Conformance] + test/e2e/storage/subpath.go:60 +STEP: Creating pod pod-subpath-test-secret-djtr 04/05/23 20:01:35.412 +STEP: Creating a pod to test atomic-volume-subpath 04/05/23 20:01:35.412 +Apr 5 20:01:35.423: INFO: Waiting up to 5m0s for pod "pod-subpath-test-secret-djtr" in namespace "subpath-2247" to be "Succeeded or Failed" +Apr 5 20:01:35.427: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 3.424777ms +Apr 5 20:01:37.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008436062s +Apr 5 20:01:39.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008366264s +Apr 5 20:01:41.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 6.008855396s +Apr 5 20:01:43.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 8.008887474s +Apr 5 20:01:45.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 10.008697085s +Apr 5 20:01:47.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 12.008563103s +Apr 5 20:01:49.431: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 14.007740058s +Apr 5 20:01:51.431: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 16.008023791s +Apr 5 20:01:53.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 18.008628955s +Apr 5 20:01:55.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 20.008746066s +Apr 5 20:01:57.436: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 22.012383943s +Apr 5 20:01:59.433: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 24.009209726s +Apr 5 20:02:01.433: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=false. Elapsed: 26.00986049s +Apr 5 20:02:03.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.008587451s +STEP: Saw pod success 04/05/23 20:02:03.432 +Apr 5 20:02:03.432: INFO: Pod "pod-subpath-test-secret-djtr" satisfied condition "Succeeded or Failed" +Apr 5 20:02:03.435: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-secret-djtr container test-container-subpath-secret-djtr: +STEP: delete the pod 04/05/23 20:02:03.444 +Apr 5 20:02:03.468: INFO: Waiting for pod pod-subpath-test-secret-djtr to disappear +Apr 5 20:02:03.473: INFO: Pod pod-subpath-test-secret-djtr no longer exists +STEP: Deleting pod pod-subpath-test-secret-djtr 04/05/23 20:02:03.473 +Apr 5 20:02:03.473: INFO: Deleting pod "pod-subpath-test-secret-djtr" in namespace "subpath-2247" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:03.478: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 +STEP: Destroying namespace "subpath-2247" for this suite. 04/05/23 20:02:03.485 +------------------------------ +• [SLOW TEST] [28.121 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/storage/subpath.go:60 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:01:35.371 + Apr 5 20:01:35.371: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename subpath 04/05/23 20:01:35.372 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:01:35.393 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:01:35.396 + [BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 + STEP: Setting up data 04/05/23 20:01:35.399 + [It] should support subpaths with secret pod [Conformance] + test/e2e/storage/subpath.go:60 + STEP: Creating pod pod-subpath-test-secret-djtr 04/05/23 20:01:35.412 + STEP: Creating a pod to test atomic-volume-subpath 04/05/23 20:01:35.412 + Apr 5 20:01:35.423: INFO: Waiting up to 5m0s for pod "pod-subpath-test-secret-djtr" in namespace "subpath-2247" to be "Succeeded or Failed" + Apr 5 20:01:35.427: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 3.424777ms + Apr 5 20:01:37.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008436062s + Apr 5 20:01:39.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008366264s + Apr 5 20:01:41.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 6.008855396s + Apr 5 20:01:43.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 8.008887474s + Apr 5 20:01:45.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 10.008697085s + Apr 5 20:01:47.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 12.008563103s + Apr 5 20:01:49.431: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 14.007740058s + Apr 5 20:01:51.431: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 16.008023791s + Apr 5 20:01:53.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 18.008628955s + Apr 5 20:01:55.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 20.008746066s + Apr 5 20:01:57.436: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 22.012383943s + Apr 5 20:01:59.433: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=true. Elapsed: 24.009209726s + Apr 5 20:02:01.433: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Running", Reason="", readiness=false. Elapsed: 26.00986049s + Apr 5 20:02:03.432: INFO: Pod "pod-subpath-test-secret-djtr": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.008587451s + STEP: Saw pod success 04/05/23 20:02:03.432 + Apr 5 20:02:03.432: INFO: Pod "pod-subpath-test-secret-djtr" satisfied condition "Succeeded or Failed" + Apr 5 20:02:03.435: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-secret-djtr container test-container-subpath-secret-djtr: + STEP: delete the pod 04/05/23 20:02:03.444 + Apr 5 20:02:03.468: INFO: Waiting for pod pod-subpath-test-secret-djtr to disappear + Apr 5 20:02:03.473: INFO: Pod pod-subpath-test-secret-djtr no longer exists + STEP: Deleting pod pod-subpath-test-secret-djtr 04/05/23 20:02:03.473 + Apr 5 20:02:03.473: INFO: Deleting pod "pod-subpath-test-secret-djtr" in namespace "subpath-2247" + [AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:03.478: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 + STEP: Destroying namespace "subpath-2247" for this suite. 04/05/23 20:02:03.485 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:73 +[BeforeEach] [sig-node] Containers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:03.498 +Apr 5 20:02:03.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename containers 04/05/23 20:02:03.499 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:03.513 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:03.516 +[BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:73 +STEP: Creating a pod to test override command 04/05/23 20:02:03.521 +Apr 5 20:02:03.529: INFO: Waiting up to 5m0s for pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754" in namespace "containers-7273" to be "Succeeded or Failed" +Apr 5 20:02:03.533: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 3.17284ms +Apr 5 20:02:05.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008828173s +Apr 5 20:02:07.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008774603s +Apr 5 20:02:09.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008172019s +Apr 5 20:02:11.537: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007507493s +STEP: Saw pod success 04/05/23 20:02:11.537 +Apr 5 20:02:11.537: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754" satisfied condition "Succeeded or Failed" +Apr 5 20:02:11.541: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 container agnhost-container: +STEP: delete the pod 04/05/23 20:02:11.547 +Apr 5 20:02:11.561: INFO: Waiting for pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 to disappear +Apr 5 20:02:11.564: INFO: Pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:11.565: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 +STEP: Destroying namespace "containers-7273" for this suite. 04/05/23 20:02:11.571 +------------------------------ +• [SLOW TEST] [8.080 seconds] +[sig-node] Containers +test/e2e/common/node/framework.go:23 + should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:73 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Containers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:03.498 + Apr 5 20:02:03.498: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename containers 04/05/23 20:02:03.499 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:03.513 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:03.516 + [BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:73 + STEP: Creating a pod to test override command 04/05/23 20:02:03.521 + Apr 5 20:02:03.529: INFO: Waiting up to 5m0s for pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754" in namespace "containers-7273" to be "Succeeded or Failed" + Apr 5 20:02:03.533: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 3.17284ms + Apr 5 20:02:05.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008828173s + Apr 5 20:02:07.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008774603s + Apr 5 20:02:09.538: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008172019s + Apr 5 20:02:11.537: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007507493s + STEP: Saw pod success 04/05/23 20:02:11.537 + Apr 5 20:02:11.537: INFO: Pod "client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754" satisfied condition "Succeeded or Failed" + Apr 5 20:02:11.541: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 container agnhost-container: + STEP: delete the pod 04/05/23 20:02:11.547 + Apr 5 20:02:11.561: INFO: Waiting for pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 to disappear + Apr 5 20:02:11.564: INFO: Pod client-containers-ed52c8de-6c1e-4580-9eb9-8e9eac13a754 no longer exists + [AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:11.565: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 + STEP: Destroying namespace "containers-7273" for this suite. 04/05/23 20:02:11.571 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/apps/daemon_set.go:374 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:11.586 +Apr 5 20:02:11.586: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 20:02:11.587 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:11.6 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:11.603 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/apps/daemon_set.go:374 +Apr 5 20:02:11.657: INFO: Creating simple daemon set daemon-set +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:02:11.662 +Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:11.681: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:11.681: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:12.686: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:12.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:12.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:12.691: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:12.691: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:13.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:13.693: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:14.688: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:14.689: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:14.689: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:14.694: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:14.694: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:15.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:15.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:15.688: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:15.691: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:15.691: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:16.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:02:16.690: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Update daemon pods image. 04/05/23 20:02:16.702 +STEP: Check that daemon pods images are updated. 04/05/23 20:02:16.715 +Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-lzxp5. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:17.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:17.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:17.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:17.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:17.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:18.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:18.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:18.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:18.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:18.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:19.730: INFO: Pod daemon-set-6twzb is not available +Apr 5 20:02:19.730: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:19.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:20.731: INFO: Pod daemon-set-6twzb is not available +Apr 5 20:02:20.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:20.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:20.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:20.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:20.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:21.730: INFO: Pod daemon-set-6twzb is not available +Apr 5 20:02:21.730: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:21.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:22.731: INFO: Pod daemon-set-6twzb is not available +Apr 5 20:02:22.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:22.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:23.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:24.733: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:24.733: INFO: Pod daemon-set-vrd85 is not available +Apr 5 20:02:24.738: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:24.738: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:24.739: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:25.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:25.731: INFO: Pod daemon-set-vrd85 is not available +Apr 5 20:02:25.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:25.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:25.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:26.729: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:26.730: INFO: Pod daemon-set-vrd85 is not available +Apr 5 20:02:26.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:26.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:26.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:27.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. +Apr 5 20:02:27.730: INFO: Pod daemon-set-vrd85 is not available +Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.730: INFO: Pod daemon-set-27n42 is not available +Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 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. 04/05/23 20:02:29.736 +Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:29.745: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:02:29.745: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:30.756: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:02:30.756: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:31.755: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:02:31.755: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:32.755: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:02:32.756: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:02:33.756: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:02:33.756: 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:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:02:33.775 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-6693, will wait for the garbage collector to delete the pods 04/05/23 20:02:33.775 +Apr 5 20:02:33.837: INFO: Deleting DaemonSet.extensions daemon-set took: 7.854401ms +Apr 5 20:02:33.937: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.459718ms +Apr 5 20:02:36.242: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:02:36.242: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 20:02:36.245: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"132732"},"items":null} + +Apr 5 20:02:36.248: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"132732"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:36.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-6693" for this suite. 04/05/23 20:02:36.27 +------------------------------ +• [SLOW TEST] [24.690 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/apps/daemon_set.go:374 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:11.586 + Apr 5 20:02:11.586: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 20:02:11.587 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:11.6 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:11.603 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/apps/daemon_set.go:374 + Apr 5 20:02:11.657: INFO: Creating simple daemon set daemon-set + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:02:11.662 + Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:11.671: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:11.681: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:11.681: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:12.686: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:12.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:12.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:12.691: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:12.691: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:13.688: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:13.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:13.693: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:14.688: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:14.689: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:14.689: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:14.694: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:14.694: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:15.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:15.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:15.688: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:15.691: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:15.691: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:16.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:16.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:02:16.690: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set + STEP: Update daemon pods image. 04/05/23 20:02:16.702 + STEP: Check that daemon pods images are updated. 04/05/23 20:02:16.715 + Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:16.719: INFO: Wrong image for pod: daemon-set-lzxp5. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:16.725: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:17.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:17.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:17.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:17.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:17.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:18.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:18.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:18.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:18.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:18.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:19.730: INFO: Pod daemon-set-6twzb is not available + Apr 5 20:02:19.730: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:19.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:19.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:20.731: INFO: Pod daemon-set-6twzb is not available + Apr 5 20:02:20.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:20.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:20.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:20.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:20.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:21.730: INFO: Pod daemon-set-6twzb is not available + Apr 5 20:02:21.730: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:21.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:21.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:22.731: INFO: Pod daemon-set-6twzb is not available + Apr 5 20:02:22.731: INFO: Wrong image for pod: daemon-set-84mdl. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:22.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:22.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:23.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:23.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:24.733: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:24.733: INFO: Pod daemon-set-vrd85 is not available + Apr 5 20:02:24.738: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:24.738: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:24.739: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:25.731: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:25.731: INFO: Pod daemon-set-vrd85 is not available + Apr 5 20:02:25.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:25.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:25.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:26.729: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:26.730: INFO: Pod daemon-set-vrd85 is not available + Apr 5 20:02:26.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:26.737: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:26.737: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:27.730: INFO: Wrong image for pod: daemon-set-dqrlr. Expected: registry.k8s.io/e2e-test-images/agnhost:2.43, got: registry.k8s.io/e2e-test-images/httpd:2.4.38-4. + Apr 5 20:02:27.730: INFO: Pod daemon-set-vrd85 is not available + Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:27.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:28.735: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.730: INFO: Pod daemon-set-27n42 is not available + Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.736: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 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. 04/05/23 20:02:29.736 + Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.741: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:29.745: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:02:29.745: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:30.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:30.756: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:02:30.756: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:31.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:31.755: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:02:31.755: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:32.751: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:32.755: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:02:32.756: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:33.752: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:02:33.756: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:02:33.756: 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:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:02:33.775 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-6693, will wait for the garbage collector to delete the pods 04/05/23 20:02:33.775 + Apr 5 20:02:33.837: INFO: Deleting DaemonSet.extensions daemon-set took: 7.854401ms + Apr 5 20:02:33.937: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.459718ms + Apr 5 20:02:36.242: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:02:36.242: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 20:02:36.245: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"132732"},"items":null} + + Apr 5 20:02:36.248: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"132732"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:36.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-6693" for this suite. 04/05/23 20:02:36.27 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + Replicaset should have a working scale subresource [Conformance] + test/e2e/apps/replica_set.go:143 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:36.285 +Apr 5 20:02:36.286: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 20:02:36.287 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:36.3 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:36.303 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] Replicaset should have a working scale subresource [Conformance] + test/e2e/apps/replica_set.go:143 +STEP: Creating replica set "test-rs" that asks for more than the allowed pod quota 04/05/23 20:02:36.306 +Apr 5 20:02:36.313: INFO: Pod name sample-pod: Found 0 pods out of 1 +Apr 5 20:02:41.329: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 20:02:41.329 +STEP: getting scale subresource 04/05/23 20:02:41.33 +STEP: updating a scale subresource 04/05/23 20:02:41.334 +STEP: verifying the replicaset Spec.Replicas was modified 04/05/23 20:02:41.339 +STEP: Patch a scale subresource 04/05/23 20:02:41.342 +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:41.357: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-407" for this suite. 04/05/23 20:02:41.364 +------------------------------ +• [SLOW TEST] [5.092 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + Replicaset should have a working scale subresource [Conformance] + test/e2e/apps/replica_set.go:143 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:36.285 + Apr 5 20:02:36.286: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 20:02:36.287 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:36.3 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:36.303 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] Replicaset should have a working scale subresource [Conformance] + test/e2e/apps/replica_set.go:143 + STEP: Creating replica set "test-rs" that asks for more than the allowed pod quota 04/05/23 20:02:36.306 + Apr 5 20:02:36.313: INFO: Pod name sample-pod: Found 0 pods out of 1 + Apr 5 20:02:41.329: INFO: Pod name sample-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 20:02:41.329 + STEP: getting scale subresource 04/05/23 20:02:41.33 + STEP: updating a scale subresource 04/05/23 20:02:41.334 + STEP: verifying the replicaset Spec.Replicas was modified 04/05/23 20:02:41.339 + STEP: Patch a scale subresource 04/05/23 20:02:41.342 + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:41.357: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-407" for this suite. 04/05/23 20:02:41.364 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-architecture] Conformance Tests + should have at least two untainted nodes [Conformance] + test/e2e/architecture/conformance.go:38 +[BeforeEach] [sig-architecture] Conformance Tests + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:41.385 +Apr 5 20:02:41.386: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename conformance-tests 04/05/23 20:02:41.386 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:41.402 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:41.405 +[BeforeEach] [sig-architecture] Conformance Tests + test/e2e/framework/metrics/init/init.go:31 +[It] should have at least two untainted nodes [Conformance] + test/e2e/architecture/conformance.go:38 +STEP: Getting node addresses 04/05/23 20:02:41.407 +Apr 5 20:02:41.407: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +[AfterEach] [sig-architecture] Conformance Tests + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:41.414: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-architecture] Conformance Tests + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-architecture] Conformance Tests + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-architecture] Conformance Tests + tear down framework | framework.go:193 +STEP: Destroying namespace "conformance-tests-5279" for this suite. 04/05/23 20:02:41.421 +------------------------------ +• [0.043 seconds] +[sig-architecture] Conformance Tests +test/e2e/architecture/framework.go:23 + should have at least two untainted nodes [Conformance] + test/e2e/architecture/conformance.go:38 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-architecture] Conformance Tests + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:41.385 + Apr 5 20:02:41.386: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename conformance-tests 04/05/23 20:02:41.386 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:41.402 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:41.405 + [BeforeEach] [sig-architecture] Conformance Tests + test/e2e/framework/metrics/init/init.go:31 + [It] should have at least two untainted nodes [Conformance] + test/e2e/architecture/conformance.go:38 + STEP: Getting node addresses 04/05/23 20:02:41.407 + Apr 5 20:02:41.407: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable + [AfterEach] [sig-architecture] Conformance Tests + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:41.414: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-architecture] Conformance Tests + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-architecture] Conformance Tests + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-architecture] Conformance Tests + tear down framework | framework.go:193 + STEP: Destroying namespace "conformance-tests-5279" for this suite. 04/05/23 20:02:41.421 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:221 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:41.43 +Apr 5 20:02:41.430: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:02:41.431 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:41.446 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:41.45 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:221 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:02:41.454 +Apr 5 20:02:41.463: INFO: Waiting up to 5m0s for pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10" in namespace "downward-api-29" to be "Succeeded or Failed" +Apr 5 20:02:41.468: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 4.961831ms +Apr 5 20:02:43.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01096165s +Apr 5 20:02:45.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011103424s +Apr 5 20:02:47.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011423548s +Apr 5 20:02:49.473: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010045142s +STEP: Saw pod success 04/05/23 20:02:49.473 +Apr 5 20:02:49.473: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10" satisfied condition "Succeeded or Failed" +Apr 5 20:02:49.477: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 container client-container: +STEP: delete the pod 04/05/23 20:02:49.484 +Apr 5 20:02:49.497: INFO: Waiting for pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 to disappear +Apr 5 20:02:49.499: INFO: Pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:02:49.500: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-29" for this suite. 04/05/23 20:02:49.505 +------------------------------ +• [SLOW TEST] [8.081 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:221 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:41.43 + Apr 5 20:02:41.430: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:02:41.431 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:41.446 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:41.45 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:221 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:02:41.454 + Apr 5 20:02:41.463: INFO: Waiting up to 5m0s for pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10" in namespace "downward-api-29" to be "Succeeded or Failed" + Apr 5 20:02:41.468: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 4.961831ms + Apr 5 20:02:43.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01096165s + Apr 5 20:02:45.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011103424s + Apr 5 20:02:47.474: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Pending", Reason="", readiness=false. Elapsed: 6.011423548s + Apr 5 20:02:49.473: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010045142s + STEP: Saw pod success 04/05/23 20:02:49.473 + Apr 5 20:02:49.473: INFO: Pod "downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10" satisfied condition "Succeeded or Failed" + Apr 5 20:02:49.477: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 container client-container: + STEP: delete the pod 04/05/23 20:02:49.484 + Apr 5 20:02:49.497: INFO: Waiting for pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 to disappear + Apr 5 20:02:49.499: INFO: Pod downwardapi-volume-9e834fc1-1ba0-4642-a992-491c94bcfe10 no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:02:49.500: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-29" for this suite. 04/05/23 20:02:49.505 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:93 +[BeforeEach] [sig-network] Networking + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:02:49.519 +Apr 5 20:02:49.519: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:02:49.52 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:49.535 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:49.539 +[BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 +[It] should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:93 +STEP: Performing setup for networking test in namespace pod-network-test-5599 04/05/23 20:02:49.542 +STEP: creating a selector 04/05/23 20:02:49.542 +STEP: Creating the service pods in kubernetes 04/05/23 20:02:49.543 +Apr 5 20:02:49.543: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Apr 5 20:02:49.579: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-5599" to be "running and ready" +Apr 5 20:02:49.586: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.743795ms +Apr 5 20:02:49.586: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:02:51.591: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011317693s +Apr 5 20:02:51.591: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:02:53.590: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010685038s +Apr 5 20:02:53.590: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:02:55.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.01131295s +Apr 5 20:02:55.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:02:57.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.011931099s +Apr 5 20:02:57.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:02:59.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.011473868s +Apr 5 20:02:59.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:01.593: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.013205256s +Apr 5 20:03:01.593: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:03.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.011497464s +Apr 5 20:03:03.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:05.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.011730535s +Apr 5 20:03:05.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:07.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.011887498s +Apr 5 20:03:07.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:09.592: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.01257752s +Apr 5 20:03:09.592: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:03:11.590: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.010923397s +Apr 5 20:03:11.590: INFO: The phase of Pod netserver-0 is Running (Ready = true) +Apr 5 20:03:11.590: INFO: Pod "netserver-0" satisfied condition "running and ready" +Apr 5 20:03:11.594: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-5599" to be "running and ready" +Apr 5 20:03:11.597: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.378825ms +Apr 5 20:03:11.597: INFO: The phase of Pod netserver-1 is Running (Ready = true) +Apr 5 20:03:11.597: INFO: Pod "netserver-1" satisfied condition "running and ready" +Apr 5 20:03:11.600: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-5599" to be "running and ready" +Apr 5 20:03:11.603: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.053997ms +Apr 5 20:03:11.603: INFO: The phase of Pod netserver-2 is Running (Ready = true) +Apr 5 20:03:11.603: INFO: Pod "netserver-2" satisfied condition "running and ready" +STEP: Creating test pods 04/05/23 20:03:11.607 +Apr 5 20:03:11.611: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-5599" to be "running" +Apr 5 20:03:11.614: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 3.205307ms +Apr 5 20:03:13.619: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008139016s +Apr 5 20:03:15.621: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009471006s +Apr 5 20:03:17.620: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.008734478s +Apr 5 20:03:17.620: INFO: Pod "test-container-pod" satisfied condition "running" +Apr 5 20:03:17.624: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Apr 5 20:03:17.624: INFO: Breadth first check of 192.168.2.200 on host 195.17.150.191... +Apr 5 20:03:17.627: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.2.200&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:03:17.627: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:03:17.628: INFO: ExecWithOptions: Clientset creation +Apr 5 20:03:17.628: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.2.200%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:03:17.724: INFO: Waiting for responses: map[] +Apr 5 20:03:17.724: INFO: reached 192.168.2.200 after 0/1 tries +Apr 5 20:03:17.724: INFO: Breadth first check of 192.168.3.36 on host 195.17.150.192... +Apr 5 20:03:17.728: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.3.36&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:03:17.728: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:03:17.729: INFO: ExecWithOptions: Clientset creation +Apr 5 20:03:17.729: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.3.36%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:03:17.813: INFO: Waiting for responses: map[] +Apr 5 20:03:17.813: INFO: reached 192.168.3.36 after 0/1 tries +Apr 5 20:03:17.813: INFO: Breadth first check of 192.168.1.220 on host 195.17.2.92... +Apr 5 20:03:17.818: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.1.220&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:03:17.818: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:03:17.819: INFO: ExecWithOptions: Clientset creation +Apr 5 20:03:17.819: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.1.220%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:03:17.913: INFO: Waiting for responses: map[] +Apr 5 20:03:17.914: INFO: reached 192.168.1.220 after 0/1 tries +Apr 5 20:03:17.914: INFO: Going to retry 0 out of 3 pods.... +[AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 +Apr 5 20:03:17.914: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 +STEP: Destroying namespace "pod-network-test-5599" for this suite. 04/05/23 20:03:17.92 +------------------------------ +• [SLOW TEST] [28.408 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/common/network/networking.go:93 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Networking + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:02:49.519 + Apr 5 20:02:49.519: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:02:49.52 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:02:49.535 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:02:49.539 + [BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 + [It] should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:93 + STEP: Performing setup for networking test in namespace pod-network-test-5599 04/05/23 20:02:49.542 + STEP: creating a selector 04/05/23 20:02:49.542 + STEP: Creating the service pods in kubernetes 04/05/23 20:02:49.543 + Apr 5 20:02:49.543: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable + Apr 5 20:02:49.579: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-5599" to be "running and ready" + Apr 5 20:02:49.586: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.743795ms + Apr 5 20:02:49.586: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:02:51.591: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011317693s + Apr 5 20:02:51.591: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:02:53.590: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010685038s + Apr 5 20:02:53.590: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:02:55.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.01131295s + Apr 5 20:02:55.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:02:57.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.011931099s + Apr 5 20:02:57.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:02:59.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.011473868s + Apr 5 20:02:59.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:01.593: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.013205256s + Apr 5 20:03:01.593: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:03.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.011497464s + Apr 5 20:03:03.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:05.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.011730535s + Apr 5 20:03:05.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:07.591: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.011887498s + Apr 5 20:03:07.591: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:09.592: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.01257752s + Apr 5 20:03:09.592: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:03:11.590: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.010923397s + Apr 5 20:03:11.590: INFO: The phase of Pod netserver-0 is Running (Ready = true) + Apr 5 20:03:11.590: INFO: Pod "netserver-0" satisfied condition "running and ready" + Apr 5 20:03:11.594: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-5599" to be "running and ready" + Apr 5 20:03:11.597: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.378825ms + Apr 5 20:03:11.597: INFO: The phase of Pod netserver-1 is Running (Ready = true) + Apr 5 20:03:11.597: INFO: Pod "netserver-1" satisfied condition "running and ready" + Apr 5 20:03:11.600: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-5599" to be "running and ready" + Apr 5 20:03:11.603: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.053997ms + Apr 5 20:03:11.603: INFO: The phase of Pod netserver-2 is Running (Ready = true) + Apr 5 20:03:11.603: INFO: Pod "netserver-2" satisfied condition "running and ready" + STEP: Creating test pods 04/05/23 20:03:11.607 + Apr 5 20:03:11.611: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-5599" to be "running" + Apr 5 20:03:11.614: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 3.205307ms + Apr 5 20:03:13.619: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008139016s + Apr 5 20:03:15.621: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009471006s + Apr 5 20:03:17.620: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.008734478s + Apr 5 20:03:17.620: INFO: Pod "test-container-pod" satisfied condition "running" + Apr 5 20:03:17.624: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 + Apr 5 20:03:17.624: INFO: Breadth first check of 192.168.2.200 on host 195.17.150.191... + Apr 5 20:03:17.627: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.2.200&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:03:17.627: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:03:17.628: INFO: ExecWithOptions: Clientset creation + Apr 5 20:03:17.628: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.2.200%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:03:17.724: INFO: Waiting for responses: map[] + Apr 5 20:03:17.724: INFO: reached 192.168.2.200 after 0/1 tries + Apr 5 20:03:17.724: INFO: Breadth first check of 192.168.3.36 on host 195.17.150.192... + Apr 5 20:03:17.728: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.3.36&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:03:17.728: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:03:17.729: INFO: ExecWithOptions: Clientset creation + Apr 5 20:03:17.729: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.3.36%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:03:17.813: INFO: Waiting for responses: map[] + Apr 5 20:03:17.813: INFO: reached 192.168.3.36 after 0/1 tries + Apr 5 20:03:17.813: INFO: Breadth first check of 192.168.1.220 on host 195.17.2.92... + Apr 5 20:03:17.818: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.131:9080/dial?request=hostname&protocol=udp&host=192.168.1.220&port=8081&tries=1'] Namespace:pod-network-test-5599 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:03:17.818: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:03:17.819: INFO: ExecWithOptions: Clientset creation + Apr 5 20:03:17.819: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-5599/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.131%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D192.168.1.220%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:03:17.913: INFO: Waiting for responses: map[] + Apr 5 20:03:17.914: INFO: reached 192.168.1.220 after 0/1 tries + Apr 5 20:03:17.914: INFO: Going to retry 0 out of 3 pods.... + [AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 + Apr 5 20:03:17.914: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 + STEP: Destroying namespace "pod-network-test-5599" for this suite. 04/05/23 20:03:17.92 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:47 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:03:17.935 +Apr 5 20:03:17.935: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 20:03:17.936 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:03:17.952 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:03:17.956 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:47 +STEP: Creating configMap with name configmap-test-volume-a7b3397b-4d03-4e30-9abe-58511602d374 04/05/23 20:03:17.959 +STEP: Creating a pod to test consume configMaps 04/05/23 20:03:17.964 +Apr 5 20:03:17.972: INFO: Waiting up to 5m0s for pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211" in namespace "configmap-4674" to be "Succeeded or Failed" +Apr 5 20:03:17.979: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 7.463102ms +Apr 5 20:03:19.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013589545s +Apr 5 20:03:21.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013510375s +Apr 5 20:03:23.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 6.013135146s +Apr 5 20:03:25.987: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.015417625s +STEP: Saw pod success 04/05/23 20:03:25.987 +Apr 5 20:03:25.987: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211" satisfied condition "Succeeded or Failed" +Apr 5 20:03:25.991: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 container agnhost-container: +STEP: delete the pod 04/05/23 20:03:25.999 +Apr 5 20:03:26.012: INFO: Waiting for pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 to disappear +Apr 5 20:03:26.017: INFO: Pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:03:26.018: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-4674" for this suite. 04/05/23 20:03:26.023 +------------------------------ +• [SLOW TEST] [8.095 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:47 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:03:17.935 + Apr 5 20:03:17.935: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 20:03:17.936 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:03:17.952 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:03:17.956 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:47 + STEP: Creating configMap with name configmap-test-volume-a7b3397b-4d03-4e30-9abe-58511602d374 04/05/23 20:03:17.959 + STEP: Creating a pod to test consume configMaps 04/05/23 20:03:17.964 + Apr 5 20:03:17.972: INFO: Waiting up to 5m0s for pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211" in namespace "configmap-4674" to be "Succeeded or Failed" + Apr 5 20:03:17.979: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 7.463102ms + Apr 5 20:03:19.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013589545s + Apr 5 20:03:21.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013510375s + Apr 5 20:03:23.985: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Pending", Reason="", readiness=false. Elapsed: 6.013135146s + Apr 5 20:03:25.987: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.015417625s + STEP: Saw pod success 04/05/23 20:03:25.987 + Apr 5 20:03:25.987: INFO: Pod "pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211" satisfied condition "Succeeded or Failed" + Apr 5 20:03:25.991: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 container agnhost-container: + STEP: delete the pod 04/05/23 20:03:25.999 + Apr 5 20:03:26.012: INFO: Waiting for pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 to disappear + Apr 5 20:03:26.017: INFO: Pod pod-configmaps-2775c098-98b2-4065-ae8f-35e69f0be211 no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:03:26.018: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-4674" for this suite. 04/05/23 20:03:26.023 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for services [Conformance] + test/e2e/network/dns.go:137 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:03:26.033 +Apr 5 20:03:26.033: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 20:03:26.034 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:03:26.046 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:03:26.05 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide DNS for services [Conformance] + test/e2e/network/dns.go:137 +STEP: Creating a test headless service 04/05/23 20:03:26.053 +STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_udp@PTR;check="$$(dig +tcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_tcp@PTR;sleep 1; done + 04/05/23 20:03:26.081 +STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_udp@PTR;check="$$(dig +tcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_tcp@PTR;sleep 1; done + 04/05/23 20:03:26.081 +STEP: creating a pod to probe DNS 04/05/23 20:03:26.081 +STEP: submitting the pod to kubernetes 04/05/23 20:03:26.082 +Apr 5 20:03:26.094: INFO: Waiting up to 15m0s for pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a" in namespace "dns-7961" to be "running" +Apr 5 20:03:26.097: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.378815ms +Apr 5 20:03:28.104: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009034358s +Apr 5 20:03:30.102: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007841005s +Apr 5 20:03:32.103: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Running", Reason="", readiness=true. Elapsed: 6.00861607s +Apr 5 20:03:32.103: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a" satisfied condition "running" +STEP: retrieving the pod 04/05/23 20:03:32.103 +STEP: looking for the results for each expected name from probers 04/05/23 20:03:32.106 +Apr 5 20:03:32.112: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.116: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.120: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.124: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.142: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.146: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.149: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.154: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:32.169: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:03:37.175: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.180: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.184: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.188: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.210: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:37.236: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:03:42.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.182: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.186: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.190: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.209: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.220: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:42.239: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:03:47.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.181: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.185: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.189: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.212: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.216: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.219: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.223: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:47.239: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:03:52.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.181: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.186: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.189: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.211: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.214: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.218: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:52.236: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:03:57.178: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.182: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.187: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.191: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.210: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) +Apr 5 20:03:57.237: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + +Apr 5 20:04:02.231: INFO: DNS probes using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a succeeded + +STEP: deleting the pod 04/05/23 20:04:02.231 +STEP: deleting the test service 04/05/23 20:04:02.248 +STEP: deleting the test headless service 04/05/23 20:04:02.294 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 20:04:02.306: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-7961" for this suite. 04/05/23 20:04:02.316 +------------------------------ +• [SLOW TEST] [36.291 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for services [Conformance] + test/e2e/network/dns.go:137 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:03:26.033 + Apr 5 20:03:26.033: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 20:03:26.034 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:03:26.046 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:03:26.05 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide DNS for services [Conformance] + test/e2e/network/dns.go:137 + STEP: Creating a test headless service 04/05/23 20:03:26.053 + STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_udp@PTR;check="$$(dig +tcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_tcp@PTR;sleep 1; done + 04/05/23 20:03:26.081 + STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-7961.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-7961.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-7961.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_udp@PTR;check="$$(dig +tcp +noall +answer +search 8.177.135.10.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/10.135.177.8_tcp@PTR;sleep 1; done + 04/05/23 20:03:26.081 + STEP: creating a pod to probe DNS 04/05/23 20:03:26.081 + STEP: submitting the pod to kubernetes 04/05/23 20:03:26.082 + Apr 5 20:03:26.094: INFO: Waiting up to 15m0s for pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a" in namespace "dns-7961" to be "running" + Apr 5 20:03:26.097: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.378815ms + Apr 5 20:03:28.104: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009034358s + Apr 5 20:03:30.102: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007841005s + Apr 5 20:03:32.103: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a": Phase="Running", Reason="", readiness=true. Elapsed: 6.00861607s + Apr 5 20:03:32.103: INFO: Pod "dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a" satisfied condition "running" + STEP: retrieving the pod 04/05/23 20:03:32.103 + STEP: looking for the results for each expected name from probers 04/05/23 20:03:32.106 + Apr 5 20:03:32.112: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.116: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.120: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.124: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.142: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.146: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.149: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.154: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:32.169: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:03:37.175: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.180: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.184: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.188: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.210: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:37.236: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:03:42.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.182: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.186: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.190: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.209: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.220: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:42.239: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:03:47.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.181: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.185: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.189: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.212: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.216: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.219: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.223: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:47.239: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:03:52.177: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.181: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.186: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.189: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.211: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.214: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.218: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:52.236: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:03:57.178: INFO: Unable to read wheezy_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.182: INFO: Unable to read wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.187: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.191: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.210: INFO: Unable to read jessie_udp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.213: INFO: Unable to read jessie_tcp@dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.217: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.222: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local from pod dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a: the server could not find the requested resource (get pods dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a) + Apr 5 20:03:57.237: INFO: Lookups using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a failed for: [wheezy_udp@dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@dns-test-service.dns-7961.svc.cluster.local wheezy_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_udp@dns-test-service.dns-7961.svc.cluster.local jessie_tcp@dns-test-service.dns-7961.svc.cluster.local jessie_udp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local jessie_tcp@_http._tcp.dns-test-service.dns-7961.svc.cluster.local] + + Apr 5 20:04:02.231: INFO: DNS probes using dns-7961/dns-test-37e6854b-636f-4a7f-8de1-b1ab9c53513a succeeded + + STEP: deleting the pod 04/05/23 20:04:02.231 + STEP: deleting the test service 04/05/23 20:04:02.248 + STEP: deleting the test headless service 04/05/23 20:04:02.294 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 20:04:02.306: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-7961" for this suite. 04/05/23 20:04:02.316 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:53 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:04:02.337 +Apr 5 20:04:02.337: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:04:02.338 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:02.356 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:02.358 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:53 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:04:02.362 +Apr 5 20:04:02.379: INFO: Waiting up to 5m0s for pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc" in namespace "projected-8099" to be "Succeeded or Failed" +Apr 5 20:04:02.389: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Pending", Reason="", readiness=false. Elapsed: 9.172392ms +Apr 5 20:04:04.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014413406s +Apr 5 20:04:06.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Running", Reason="", readiness=true. Elapsed: 4.01446972s +Apr 5 20:04:08.395: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Running", Reason="", readiness=false. Elapsed: 6.01517458s +Apr 5 20:04:10.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.014961354s +STEP: Saw pod success 04/05/23 20:04:10.394 +Apr 5 20:04:10.395: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc" satisfied condition "Succeeded or Failed" +Apr 5 20:04:10.398: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc container client-container: +STEP: delete the pod 04/05/23 20:04:10.406 +Apr 5 20:04:10.425: INFO: Waiting for pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc to disappear +Apr 5 20:04:10.428: INFO: Pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 20:04:10.429: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-8099" for this suite. 04/05/23 20:04:10.445 +------------------------------ +• [SLOW TEST] [8.119 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:53 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:04:02.337 + Apr 5 20:04:02.337: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:04:02.338 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:02.356 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:02.358 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:53 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:04:02.362 + Apr 5 20:04:02.379: INFO: Waiting up to 5m0s for pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc" in namespace "projected-8099" to be "Succeeded or Failed" + Apr 5 20:04:02.389: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Pending", Reason="", readiness=false. Elapsed: 9.172392ms + Apr 5 20:04:04.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014413406s + Apr 5 20:04:06.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Running", Reason="", readiness=true. Elapsed: 4.01446972s + Apr 5 20:04:08.395: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Running", Reason="", readiness=false. Elapsed: 6.01517458s + Apr 5 20:04:10.394: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.014961354s + STEP: Saw pod success 04/05/23 20:04:10.394 + Apr 5 20:04:10.395: INFO: Pod "downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc" satisfied condition "Succeeded or Failed" + Apr 5 20:04:10.398: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc container client-container: + STEP: delete the pod 04/05/23 20:04:10.406 + Apr 5 20:04:10.425: INFO: Waiting for pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc to disappear + Apr 5 20:04:10.428: INFO: Pod downwardapi-volume-888fbf64-5c6f-403c-8d64-a1a9f58443dc no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 20:04:10.429: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-8099" for this suite. 04/05/23 20:04:10.445 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Guestbook application + should create and stop a working application [Conformance] + test/e2e/kubectl/kubectl.go:394 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:04:10.462 +Apr 5 20:04:10.462: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:04:10.463 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:10.488 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:10.492 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should create and stop a working application [Conformance] + test/e2e/kubectl/kubectl.go:394 +STEP: creating all guestbook components 04/05/23 20:04:10.502 +Apr 5 20:04:10.502: 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 + +Apr 5 20:04:10.502: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:11.952: INFO: stderr: "" +Apr 5 20:04:11.952: INFO: stdout: "service/agnhost-replica created\n" +Apr 5 20:04:11.952: 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 + +Apr 5 20:04:11.952: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:13.354: INFO: stderr: "" +Apr 5 20:04:13.354: INFO: stdout: "service/agnhost-primary created\n" +Apr 5 20:04:13.355: 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 + +Apr 5 20:04:13.355: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:13.805: INFO: stderr: "" +Apr 5 20:04:13.805: INFO: stdout: "service/frontend created\n" +Apr 5 20:04:13.805: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--backend-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 80 + +Apr 5 20:04:13.805: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:14.272: INFO: stderr: "" +Apr 5 20:04:14.272: INFO: stdout: "deployment.apps/frontend created\n" +Apr 5 20:04:14.272: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + +Apr 5 20:04:14.272: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:15.734: INFO: stderr: "" +Apr 5 20:04:15.734: INFO: stdout: "deployment.apps/agnhost-primary created\n" +Apr 5 20:04:15.734: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--replicaof", "agnhost-primary", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + +Apr 5 20:04:15.734: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' +Apr 5 20:04:16.233: INFO: stderr: "" +Apr 5 20:04:16.233: INFO: stdout: "deployment.apps/agnhost-replica created\n" +STEP: validating guestbook app 04/05/23 20:04:16.233 +Apr 5 20:04:16.233: INFO: Waiting for all frontend pods to be Running. +Apr 5 20:04:21.290: INFO: Waiting for frontend to serve content. +Apr 5 20:04:21.303: INFO: Trying to add a new entry to the guestbook. +Apr 5 20:04:22.325: INFO: Verifying that added entry can be retrieved. +Apr 5 20:04:22.341: INFO: Failed to get response from guestbook. err: , response: {"data":""} +STEP: using delete to clean up resources 04/05/23 20:04:27.352 +Apr 5 20:04:27.352: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:27.462: 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" +Apr 5 20:04:27.463: INFO: stdout: "service \"agnhost-replica\" force deleted\n" +STEP: using delete to clean up resources 04/05/23 20:04:27.464 +Apr 5 20:04:27.464: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:27.596: 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" +Apr 5 20:04:27.596: INFO: stdout: "service \"agnhost-primary\" force deleted\n" +STEP: using delete to clean up resources 04/05/23 20:04:27.596 +Apr 5 20:04:27.596: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:27.711: 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" +Apr 5 20:04:27.711: INFO: stdout: "service \"frontend\" force deleted\n" +STEP: using delete to clean up resources 04/05/23 20:04:27.711 +Apr 5 20:04:27.711: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:27.806: 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" +Apr 5 20:04:27.807: INFO: stdout: "deployment.apps \"frontend\" force deleted\n" +STEP: using delete to clean up resources 04/05/23 20:04:27.807 +Apr 5 20:04:27.807: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:27.926: 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" +Apr 5 20:04:27.926: INFO: stdout: "deployment.apps \"agnhost-primary\" force deleted\n" +STEP: using delete to clean up resources 04/05/23 20:04:27.926 +Apr 5 20:04:27.926: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' +Apr 5 20:04:28.055: 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" +Apr 5 20:04:28.056: INFO: stdout: "deployment.apps \"agnhost-replica\" force deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 20:04:28.056: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-9828" for this suite. 04/05/23 20:04:28.063 +------------------------------ +• [SLOW TEST] [17.612 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Guestbook application + test/e2e/kubectl/kubectl.go:369 + should create and stop a working application [Conformance] + test/e2e/kubectl/kubectl.go:394 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:04:10.462 + Apr 5 20:04:10.462: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:04:10.463 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:10.488 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:10.492 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should create and stop a working application [Conformance] + test/e2e/kubectl/kubectl.go:394 + STEP: creating all guestbook components 04/05/23 20:04:10.502 + Apr 5 20:04:10.502: 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 + + Apr 5 20:04:10.502: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:11.952: INFO: stderr: "" + Apr 5 20:04:11.952: INFO: stdout: "service/agnhost-replica created\n" + Apr 5 20:04:11.952: 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 + + Apr 5 20:04:11.952: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:13.354: INFO: stderr: "" + Apr 5 20:04:13.354: INFO: stdout: "service/agnhost-primary created\n" + Apr 5 20:04:13.355: 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 + + Apr 5 20:04:13.355: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:13.805: INFO: stderr: "" + Apr 5 20:04:13.805: INFO: stdout: "service/frontend created\n" + Apr 5 20:04:13.805: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--backend-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 80 + + Apr 5 20:04:13.805: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:14.272: INFO: stderr: "" + Apr 5 20:04:14.272: INFO: stdout: "deployment.apps/frontend created\n" + Apr 5 20:04:14.272: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + + Apr 5 20:04:14.272: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:15.734: INFO: stderr: "" + Apr 5 20:04:15.734: INFO: stdout: "deployment.apps/agnhost-primary created\n" + Apr 5 20:04:15.734: 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: registry.k8s.io/e2e-test-images/agnhost:2.43 + args: [ "guestbook", "--replicaof", "agnhost-primary", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + + Apr 5 20:04:15.734: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 create -f -' + Apr 5 20:04:16.233: INFO: stderr: "" + Apr 5 20:04:16.233: INFO: stdout: "deployment.apps/agnhost-replica created\n" + STEP: validating guestbook app 04/05/23 20:04:16.233 + Apr 5 20:04:16.233: INFO: Waiting for all frontend pods to be Running. + Apr 5 20:04:21.290: INFO: Waiting for frontend to serve content. + Apr 5 20:04:21.303: INFO: Trying to add a new entry to the guestbook. + Apr 5 20:04:22.325: INFO: Verifying that added entry can be retrieved. + Apr 5 20:04:22.341: INFO: Failed to get response from guestbook. err: , response: {"data":""} + STEP: using delete to clean up resources 04/05/23 20:04:27.352 + Apr 5 20:04:27.352: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:27.462: 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" + Apr 5 20:04:27.463: INFO: stdout: "service \"agnhost-replica\" force deleted\n" + STEP: using delete to clean up resources 04/05/23 20:04:27.464 + Apr 5 20:04:27.464: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:27.596: 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" + Apr 5 20:04:27.596: INFO: stdout: "service \"agnhost-primary\" force deleted\n" + STEP: using delete to clean up resources 04/05/23 20:04:27.596 + Apr 5 20:04:27.596: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:27.711: 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" + Apr 5 20:04:27.711: INFO: stdout: "service \"frontend\" force deleted\n" + STEP: using delete to clean up resources 04/05/23 20:04:27.711 + Apr 5 20:04:27.711: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:27.806: 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" + Apr 5 20:04:27.807: INFO: stdout: "deployment.apps \"frontend\" force deleted\n" + STEP: using delete to clean up resources 04/05/23 20:04:27.807 + Apr 5 20:04:27.807: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:27.926: 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" + Apr 5 20:04:27.926: INFO: stdout: "deployment.apps \"agnhost-primary\" force deleted\n" + STEP: using delete to clean up resources 04/05/23 20:04:27.926 + Apr 5 20:04:27.926: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9828 delete --grace-period=0 --force -f -' + Apr 5 20:04:28.055: 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" + Apr 5 20:04:28.056: INFO: stdout: "deployment.apps \"agnhost-replica\" force deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 20:04:28.056: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-9828" for this suite. 04/05/23 20:04:28.063 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:215 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:04:28.075 +Apr 5 20:04:28.075: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:04:28.075 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:28.089 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:28.098 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:215 +STEP: Creating secret with name s-test-opt-del-b62eba52-1253-4561-8808-7fe1c09b95b4 04/05/23 20:04:28.107 +STEP: Creating secret with name s-test-opt-upd-f1fc9e0e-6d1f-4c53-a0d7-4d9ca1f6054b 04/05/23 20:04:28.111 +STEP: Creating the pod 04/05/23 20:04:28.118 +Apr 5 20:04:28.127: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf" in namespace "projected-2120" to be "running and ready" +Apr 5 20:04:28.131: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.500332ms +Apr 5 20:04:28.131: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:04:30.137: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009150289s +Apr 5 20:04:30.137: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:04:32.136: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00853789s +Apr 5 20:04:32.136: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:04:34.135: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Running", Reason="", readiness=true. Elapsed: 6.007355716s +Apr 5 20:04:34.135: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Running (Ready = true) +Apr 5 20:04:34.135: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf" satisfied condition "running and ready" +STEP: Deleting secret s-test-opt-del-b62eba52-1253-4561-8808-7fe1c09b95b4 04/05/23 20:04:34.161 +STEP: Updating secret s-test-opt-upd-f1fc9e0e-6d1f-4c53-a0d7-4d9ca1f6054b 04/05/23 20:04:34.167 +STEP: Creating secret with name s-test-opt-create-027ad247-65d2-4505-bec2-80579cca0c6b 04/05/23 20:04:34.173 +STEP: waiting to observe update in volume 04/05/23 20:04:34.179 +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 20:05:36.574: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-2120" for this suite. 04/05/23 20:05:36.58 +------------------------------ +• [SLOW TEST] [68.512 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:215 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:04:28.075 + Apr 5 20:04:28.075: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:04:28.075 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:04:28.089 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:04:28.098 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:215 + STEP: Creating secret with name s-test-opt-del-b62eba52-1253-4561-8808-7fe1c09b95b4 04/05/23 20:04:28.107 + STEP: Creating secret with name s-test-opt-upd-f1fc9e0e-6d1f-4c53-a0d7-4d9ca1f6054b 04/05/23 20:04:28.111 + STEP: Creating the pod 04/05/23 20:04:28.118 + Apr 5 20:04:28.127: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf" in namespace "projected-2120" to be "running and ready" + Apr 5 20:04:28.131: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 3.500332ms + Apr 5 20:04:28.131: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:04:30.137: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009150289s + Apr 5 20:04:30.137: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:04:32.136: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00853789s + Apr 5 20:04:32.136: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:04:34.135: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf": Phase="Running", Reason="", readiness=true. Elapsed: 6.007355716s + Apr 5 20:04:34.135: INFO: The phase of Pod pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf is Running (Ready = true) + Apr 5 20:04:34.135: INFO: Pod "pod-projected-secrets-3a4e535b-d451-46ed-8a6e-72cc5fa697bf" satisfied condition "running and ready" + STEP: Deleting secret s-test-opt-del-b62eba52-1253-4561-8808-7fe1c09b95b4 04/05/23 20:04:34.161 + STEP: Updating secret s-test-opt-upd-f1fc9e0e-6d1f-4c53-a0d7-4d9ca1f6054b 04/05/23 20:04:34.167 + STEP: Creating secret with name s-test-opt-create-027ad247-65d2-4505-bec2-80579cca0c6b 04/05/23 20:04:34.173 + STEP: waiting to observe update in volume 04/05/23 20:04:34.179 + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 20:05:36.574: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-2120" for this suite. 04/05/23 20:05:36.58 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-api-machinery] ResourceQuota + should be able to update and delete ResourceQuota. [Conformance] + test/e2e/apimachinery/resource_quota.go:884 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:05:36.591 +Apr 5 20:05:36.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 20:05:36.592 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:36.606 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:36.609 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to update and delete ResourceQuota. [Conformance] + test/e2e/apimachinery/resource_quota.go:884 +STEP: Creating a ResourceQuota 04/05/23 20:05:36.612 +STEP: Getting a ResourceQuota 04/05/23 20:05:36.616 +STEP: Updating a ResourceQuota 04/05/23 20:05:36.619 +STEP: Verifying a ResourceQuota was modified 04/05/23 20:05:36.627 +STEP: Deleting a ResourceQuota 04/05/23 20:05:36.632 +STEP: Verifying the deleted ResourceQuota 04/05/23 20:05:36.639 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 20:05:36.642: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-7583" for this suite. 04/05/23 20:05:36.648 +------------------------------ +• [0.064 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should be able to update and delete ResourceQuota. [Conformance] + test/e2e/apimachinery/resource_quota.go:884 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:05:36.591 + Apr 5 20:05:36.591: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 20:05:36.592 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:36.606 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:36.609 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to update and delete ResourceQuota. [Conformance] + test/e2e/apimachinery/resource_quota.go:884 + STEP: Creating a ResourceQuota 04/05/23 20:05:36.612 + STEP: Getting a ResourceQuota 04/05/23 20:05:36.616 + STEP: Updating a ResourceQuota 04/05/23 20:05:36.619 + STEP: Verifying a ResourceQuota was modified 04/05/23 20:05:36.627 + STEP: Deleting a ResourceQuota 04/05/23 20:05:36.632 + STEP: Verifying the deleted ResourceQuota 04/05/23 20:05:36.639 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 20:05:36.642: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-7583" for this suite. 04/05/23 20:05:36.648 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should delete RS created by deployment when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:491 +[BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:05:36.656 +Apr 5 20:05:36.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename gc 04/05/23 20:05:36.657 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:36.669 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:36.672 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 +[It] should delete RS created by deployment when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:491 +STEP: create the deployment 04/05/23 20:05:36.675 +STEP: Wait for the Deployment to create new ReplicaSet 04/05/23 20:05:36.681 +STEP: delete the deployment 04/05/23 20:05:36.686 +STEP: wait for all rs to be garbage collected 04/05/23 20:05:36.696 +STEP: expected 0 rs, got 1 rs 04/05/23 20:05:36.714 +STEP: expected 0 pods, got 1 pods 04/05/23 20:05:36.725 +STEP: Gathering metrics 04/05/23 20:05:37.236 +Apr 5 20:05:37.266: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" +Apr 5 20:05:37.270: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 4.068743ms +Apr 5 20:05:37.270: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) +Apr 5 20:05:37.270: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" +Apr 5 20:05:37.354: 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/node/init/init.go:32 +Apr 5 20:05:37.355: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 +STEP: Destroying namespace "gc-9941" for this suite. 04/05/23 20:05:37.361 +------------------------------ +• [0.712 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should delete RS created by deployment when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:491 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Garbage collector + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:05:36.656 + Apr 5 20:05:36.656: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename gc 04/05/23 20:05:36.657 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:36.669 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:36.672 + [BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:31 + [It] should delete RS created by deployment when not orphaning [Conformance] + test/e2e/apimachinery/garbage_collector.go:491 + STEP: create the deployment 04/05/23 20:05:36.675 + STEP: Wait for the Deployment to create new ReplicaSet 04/05/23 20:05:36.681 + STEP: delete the deployment 04/05/23 20:05:36.686 + STEP: wait for all rs to be garbage collected 04/05/23 20:05:36.696 + STEP: expected 0 rs, got 1 rs 04/05/23 20:05:36.714 + STEP: expected 0 pods, got 1 pods 04/05/23 20:05:36.725 + STEP: Gathering metrics 04/05/23 20:05:37.236 + Apr 5 20:05:37.266: INFO: Waiting up to 5m0s for pod "kube-controller-manager-ttneyla26-sgfb8" in namespace "kube-system" to be "running and ready" + Apr 5 20:05:37.270: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8": Phase="Running", Reason="", readiness=true. Elapsed: 4.068743ms + Apr 5 20:05:37.270: INFO: The phase of Pod kube-controller-manager-ttneyla26-sgfb8 is Running (Ready = true) + Apr 5 20:05:37.270: INFO: Pod "kube-controller-manager-ttneyla26-sgfb8" satisfied condition "running and ready" + Apr 5 20:05:37.354: 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/node/init/init.go:32 + Apr 5 20:05:37.355: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Garbage collector + tear down framework | framework.go:193 + STEP: Destroying namespace "gc-9941" for this suite. 04/05/23 20:05:37.361 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should list and delete a collection of DaemonSets [Conformance] + test/e2e/apps/daemon_set.go:823 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:05:37.368 +Apr 5 20:05:37.368: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 20:05:37.368 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:37.387 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:37.391 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should list and delete a collection of DaemonSets [Conformance] + test/e2e/apps/daemon_set.go:823 +STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:05:37.42 +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:05:37.435 +Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:37.446: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:05:37.446: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:38.650: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:05:38.733: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:05:39.681: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:39.703: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:39.704: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:39.710: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:05:39.710: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:40.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:05:40.456: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:41.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:05:41.456: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:42.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:05:42.456: INFO: Node ttneyla26-md-0-8474989c68-wbqh5 is running 0 daemon pod, expected 1 +Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:05:43.457: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:05:43.457: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: listing all DeamonSets 04/05/23 20:05:43.46 +STEP: DeleteCollection of the DaemonSets 04/05/23 20:05:43.465 +STEP: Verify that ReplicaSets have been deleted 04/05/23 20:05:43.474 +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 +Apr 5 20:05:43.495: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"135046"},"items":null} + +Apr 5 20:05:43.499: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"135046"},"items":[{"metadata":{"name":"daemon-set-7jnfz","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"01195069-ff91-453c-b375-560e0cd57517","resourceVersion":"135043","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:41Z","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\":\"192.168.3.253\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-wjhn5","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-wjhn5","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":"ttneyla26-md-0-8474989c68-rj4zb","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-rj4zb"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.150.192","podIP":"192.168.3.253","podIPs":[{"ip":"192.168.3.253"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://49704c0b1c82ce8a33af8ef745c6e5c976d58a16e21020df99772034b3a9b1f8","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-jmk6z","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"3a2b4651-c233-4647-aa28-a6db30ee4061","resourceVersion":"135045","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:41Z","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\":\"192.168.2.120\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-p25qh","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-p25qh","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":"ttneyla26-md-0-8474989c68-jf7bt","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-jf7bt"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.150.191","podIP":"192.168.2.120","podIPs":[{"ip":"192.168.2.120"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://c3a542a3cd85080900273c11397ebc12d09cb3a85e071bcbf0d6c5d56b66b7b5","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-xftkc","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"197cef05-a0f3-43bf-a5bb-e53f2b2f6451","resourceVersion":"135044","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:42Z","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\":\"192.168.1.156\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-pdsnn","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-pdsnn","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":"ttneyla26-md-0-8474989c68-wbqh5","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-wbqh5"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:42Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:42Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.2.92","podIP":"192.168.1.156","podIPs":[{"ip":"192.168.1.156"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://68c8b1f14487b6edb4dee2e5d1ea00556f6df28f43e46382c8e8081ae15017a9","started":true}],"qosClass":"BestEffort"}}]} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:05:43.516: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-2320" for this suite. 04/05/23 20:05:43.522 +------------------------------ +• [SLOW TEST] [6.161 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should list and delete a collection of DaemonSets [Conformance] + test/e2e/apps/daemon_set.go:823 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:05:37.368 + Apr 5 20:05:37.368: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 20:05:37.368 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:37.387 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:37.391 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should list and delete a collection of DaemonSets [Conformance] + test/e2e/apps/daemon_set.go:823 + STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:05:37.42 + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:05:37.435 + Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:37.443: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:37.446: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:05:37.446: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:38.498: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:38.650: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:05:38.733: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:05:39.681: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:39.703: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:39.704: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:39.710: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:05:39.710: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:40.453: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:40.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:05:40.456: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:41.452: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:41.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:05:41.456: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:42.452: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:42.456: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:05:42.456: INFO: Node ttneyla26-md-0-8474989c68-wbqh5 is running 0 daemon pod, expected 1 + Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:43.453: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:05:43.457: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:05:43.457: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set + STEP: listing all DeamonSets 04/05/23 20:05:43.46 + STEP: DeleteCollection of the DaemonSets 04/05/23 20:05:43.465 + STEP: Verify that ReplicaSets have been deleted 04/05/23 20:05:43.474 + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 + Apr 5 20:05:43.495: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"135046"},"items":null} + + Apr 5 20:05:43.499: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"135046"},"items":[{"metadata":{"name":"daemon-set-7jnfz","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"01195069-ff91-453c-b375-560e0cd57517","resourceVersion":"135043","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:41Z","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\":\"192.168.3.253\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-wjhn5","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-wjhn5","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":"ttneyla26-md-0-8474989c68-rj4zb","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-rj4zb"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.150.192","podIP":"192.168.3.253","podIPs":[{"ip":"192.168.3.253"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://49704c0b1c82ce8a33af8ef745c6e5c976d58a16e21020df99772034b3a9b1f8","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-jmk6z","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"3a2b4651-c233-4647-aa28-a6db30ee4061","resourceVersion":"135045","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:41Z","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\":\"192.168.2.120\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-p25qh","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-p25qh","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":"ttneyla26-md-0-8474989c68-jf7bt","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-jf7bt"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:41Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.150.191","podIP":"192.168.2.120","podIPs":[{"ip":"192.168.2.120"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://c3a542a3cd85080900273c11397ebc12d09cb3a85e071bcbf0d6c5d56b66b7b5","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-xftkc","generateName":"daemon-set-","namespace":"daemonsets-2320","uid":"197cef05-a0f3-43bf-a5bb-e53f2b2f6451","resourceVersion":"135044","creationTimestamp":"2023-04-05T20:05:37Z","deletionTimestamp":"2023-04-05T20:06:13Z","deletionGracePeriodSeconds":30,"labels":{"controller-revision-hash":"6cff669f8c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"c1718f9e-7343-4b21-b959-9a68afaf074f","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2023-04-05T20:05:37Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"c1718f9e-7343-4b21-b959-9a68afaf074f\"}":{}}},"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":"2023-04-05T20:05:42Z","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\":\"192.168.1.156\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-pdsnn","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":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-pdsnn","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":"ttneyla26-md-0-8474989c68-wbqh5","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["ttneyla26-md-0-8474989c68-wbqh5"]}]}]}}},"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":"2023-04-05T20:05:37Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:42Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:42Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2023-04-05T20:05:37Z"}],"hostIP":"195.17.2.92","podIP":"192.168.1.156","podIPs":[{"ip":"192.168.1.156"}],"startTime":"2023-04-05T20:05:37Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2023-04-05T20:05:41Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"registry.k8s.io/e2e-test-images/httpd:2.4.38-4","imageID":"registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22","containerID":"containerd://68c8b1f14487b6edb4dee2e5d1ea00556f6df28f43e46382c8e8081ae15017a9","started":true}],"qosClass":"BestEffort"}}]} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:05:43.516: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-2320" for this suite. 04/05/23 20:05:43.522 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:334 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:05:43.532 +Apr 5 20:05:43.532: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename init-container 04/05/23 20:05:43.533 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:43.55 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:43.553 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 +[It] should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:334 +STEP: creating the pod 04/05/23 20:05:43.556 +Apr 5 20:05:43.556: INFO: PodSpec: initContainers in spec.initContainers +Apr 5 20:06:30.791: INFO: init container has failed twice: &v1.Pod{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"pod-init-10373795-2022-410a-bc56-8dafb953d916", GenerateName:"", Namespace:"init-container-6481", SelfLink:"", UID:"ecbc9651-d05e-4815-87d8-da46af2d708f", ResourceVersion:"135542", Generation:0, CreationTimestamp:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"name":"foo", "time":"556404574"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"e2e.test", Operation:"Update", APIVersion:"v1", Time:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0095d6330), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kubelet", Operation:"Update", APIVersion:"v1", Time:time.Date(2023, time.April, 5, 20, 6, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0095d63c0), Subresource:"status"}}}, Spec:v1.PodSpec{Volumes:[]v1.Volume{v1.Volume{Name:"kube-api-access-cd4tq", 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)(0xc000bd4560), 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", 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), Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", 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), Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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:"registry.k8s.io/pause:3.9", 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"}}, Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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)(0xc002a82670), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"default", DeprecatedServiceAccount:"default", AutomountServiceAccountToken:(*bool)(nil), NodeName:"ttneyla26-md-0-8474989c68-rj4zb", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(nil), SecurityContext:(*v1.PodSecurityContext)(0xc003fea310), 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)(0xc002a826f0)}, v1.Toleration{Key:"node.kubernetes.io/unreachable", Operator:"Exists", Value:"", Effect:"NoExecute", TolerationSeconds:(*int64)(0xc002a82710)}}, HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(0xc002a82718), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc002a8271c), PreemptionPolicy:(*v1.PreemptionPolicy)(0xc006a280e0), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil), HostUsers:(*bool)(nil), SchedulingGates:[]v1.PodSchedulingGate(nil), ResourceClaims:[]v1.PodResourceClaim(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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 0, time.Local), Reason:"", Message:""}}, Message:"", Reason:"", NominatedNodeName:"", HostIP:"195.17.150.192", PodIP:"192.168.3.99", PodIPs:[]v1.PodIP{v1.PodIP{IP:"192.168.3.99"}}, StartTime:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), InitContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"init1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc003fea3f0)}, LastTerminationState:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc003fea460)}, Ready:false, RestartCount:3, Image:"registry.k8s.io/e2e-test-images/busybox:1.29-4", ImageID:"registry.k8s.io/e2e-test-images/busybox@sha256:2e0f836850e09b8b7cc937681d6194537a09fbd5f6b9e08f4d646a85128e8937", ContainerID:"containerd://e6f28422338a347efeb8101f3a4b4e3fa6ac98c762344c6aa6df073ef18da134", Started:(*bool)(nil)}, v1.ContainerStatus{Name:"init2", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc000bd4740), 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", ImageID:"", ContainerID:"", Started:(*bool)(nil)}}, ContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"run1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc000bd4700), 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:"registry.k8s.io/pause:3.9", ImageID:"", ContainerID:"", Started:(*bool)(0xc002a827af)}}, QOSClass:"Burstable", EphemeralContainerStatuses:[]v1.ContainerStatus(nil)}} +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:30.792: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 +STEP: Destroying namespace "init-container-6481" for this suite. 04/05/23 20:06:30.8 +------------------------------ +• [SLOW TEST] [47.274 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/common/node/init_container.go:334 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] InitContainer [NodeConformance] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:05:43.532 + Apr 5 20:05:43.532: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename init-container 04/05/23 20:05:43.533 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:05:43.55 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:05:43.553 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:165 + [It] should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/common/node/init_container.go:334 + STEP: creating the pod 04/05/23 20:05:43.556 + Apr 5 20:05:43.556: INFO: PodSpec: initContainers in spec.initContainers + Apr 5 20:06:30.791: INFO: init container has failed twice: &v1.Pod{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"pod-init-10373795-2022-410a-bc56-8dafb953d916", GenerateName:"", Namespace:"init-container-6481", SelfLink:"", UID:"ecbc9651-d05e-4815-87d8-da46af2d708f", ResourceVersion:"135542", Generation:0, CreationTimestamp:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"name":"foo", "time":"556404574"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"e2e.test", Operation:"Update", APIVersion:"v1", Time:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0095d6330), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kubelet", Operation:"Update", APIVersion:"v1", Time:time.Date(2023, time.April, 5, 20, 6, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0095d63c0), Subresource:"status"}}}, Spec:v1.PodSpec{Volumes:[]v1.Volume{v1.Volume{Name:"kube-api-access-cd4tq", 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)(0xc000bd4560), 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", 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), Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", 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), Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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:"registry.k8s.io/pause:3.9", 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"}}, Claims:[]v1.ResourceClaim(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-cd4tq", 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)(0xc002a82670), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"default", DeprecatedServiceAccount:"default", AutomountServiceAccountToken:(*bool)(nil), NodeName:"ttneyla26-md-0-8474989c68-rj4zb", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(nil), SecurityContext:(*v1.PodSecurityContext)(0xc003fea310), 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)(0xc002a826f0)}, v1.Toleration{Key:"node.kubernetes.io/unreachable", Operator:"Exists", Value:"", Effect:"NoExecute", TolerationSeconds:(*int64)(0xc002a82710)}}, HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(0xc002a82718), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc002a8271c), PreemptionPolicy:(*v1.PreemptionPolicy)(0xc006a280e0), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil), HostUsers:(*bool)(nil), SchedulingGates:[]v1.PodSchedulingGate(nil), ResourceClaims:[]v1.PodResourceClaim(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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 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(2023, time.April, 5, 20, 5, 43, 0, time.Local), Reason:"", Message:""}}, Message:"", Reason:"", NominatedNodeName:"", HostIP:"195.17.150.192", PodIP:"192.168.3.99", PodIPs:[]v1.PodIP{v1.PodIP{IP:"192.168.3.99"}}, StartTime:time.Date(2023, time.April, 5, 20, 5, 43, 0, time.Local), InitContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"init1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc003fea3f0)}, LastTerminationState:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc003fea460)}, Ready:false, RestartCount:3, Image:"registry.k8s.io/e2e-test-images/busybox:1.29-4", ImageID:"registry.k8s.io/e2e-test-images/busybox@sha256:2e0f836850e09b8b7cc937681d6194537a09fbd5f6b9e08f4d646a85128e8937", ContainerID:"containerd://e6f28422338a347efeb8101f3a4b4e3fa6ac98c762344c6aa6df073ef18da134", Started:(*bool)(nil)}, v1.ContainerStatus{Name:"init2", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc000bd4740), 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:"registry.k8s.io/e2e-test-images/busybox:1.29-4", ImageID:"", ContainerID:"", Started:(*bool)(nil)}}, ContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"run1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc000bd4700), 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:"registry.k8s.io/pause:3.9", ImageID:"", ContainerID:"", Started:(*bool)(0xc002a827af)}}, QOSClass:"Burstable", EphemeralContainerStatuses:[]v1.ContainerStatus(nil)}} + [AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:30.792: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] InitContainer [NodeConformance] + tear down framework | framework.go:193 + STEP: Destroying namespace "init-container-6481" for this suite. 04/05/23 20:06:30.8 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should manage the lifecycle of a ResourceQuota [Conformance] + test/e2e/apimachinery/resource_quota.go:943 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:30.811 +Apr 5 20:06:30.811: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 20:06:30.812 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.828 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.831 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should manage the lifecycle of a ResourceQuota [Conformance] + test/e2e/apimachinery/resource_quota.go:943 +STEP: Creating a ResourceQuota 04/05/23 20:06:30.834 +STEP: Getting a ResourceQuota 04/05/23 20:06:30.839 +STEP: Listing all ResourceQuotas with LabelSelector 04/05/23 20:06:30.842 +STEP: Patching the ResourceQuota 04/05/23 20:06:30.846 +STEP: Deleting a Collection of ResourceQuotas 04/05/23 20:06:30.854 +STEP: Verifying the deleted ResourceQuota 04/05/23 20:06:30.864 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:30.867: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-6715" for this suite. 04/05/23 20:06:30.872 +------------------------------ +• [0.068 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should manage the lifecycle of a ResourceQuota [Conformance] + test/e2e/apimachinery/resource_quota.go:943 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:30.811 + Apr 5 20:06:30.811: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 20:06:30.812 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.828 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.831 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should manage the lifecycle of a ResourceQuota [Conformance] + test/e2e/apimachinery/resource_quota.go:943 + STEP: Creating a ResourceQuota 04/05/23 20:06:30.834 + STEP: Getting a ResourceQuota 04/05/23 20:06:30.839 + STEP: Listing all ResourceQuotas with LabelSelector 04/05/23 20:06:30.842 + STEP: Patching the ResourceQuota 04/05/23 20:06:30.846 + STEP: Deleting a Collection of ResourceQuotas 04/05/23 20:06:30.854 + STEP: Verifying the deleted ResourceQuota 04/05/23 20:06:30.864 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:30.867: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-6715" for this suite. 04/05/23 20:06:30.872 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-node] Secrets + should fail to create secret due to empty secret key [Conformance] + test/e2e/common/node/secrets.go:140 +[BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:30.881 +Apr 5 20:06:30.882: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:06:30.883 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.898 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.9 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should fail to create secret due to empty secret key [Conformance] + test/e2e/common/node/secrets.go:140 +STEP: Creating projection with secret that has name secret-emptykey-test-76eeba58-9a4d-4d53-82fe-5fc1743ecbcf 04/05/23 20:06:30.904 +[AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:30.906: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-2009" for this suite. 04/05/23 20:06:30.912 +------------------------------ +• [0.037 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should fail to create secret due to empty secret key [Conformance] + test/e2e/common/node/secrets.go:140 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:30.881 + Apr 5 20:06:30.882: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:06:30.883 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.898 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.9 + [BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should fail to create secret due to empty secret key [Conformance] + test/e2e/common/node/secrets.go:140 + STEP: Creating projection with secret that has name secret-emptykey-test-76eeba58-9a4d-4d53-82fe-5fc1743ecbcf 04/05/23 20:06:30.904 + [AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:30.906: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-2009" for this suite. 04/05/23 20:06:30.912 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + custom resource defaulting for requests and from storage works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:269 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:30.919 +Apr 5 20:06:30.919: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:06:30.92 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.954 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.958 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] custom resource defaulting for requests and from storage works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:269 +Apr 5 20:06:30.961: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:34.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "custom-resource-definition-2369" for this suite. 04/05/23 20:06:34.122 +------------------------------ +• [3.210 seconds] +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + custom resource defaulting for requests and from storage works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:269 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:30.919 + Apr 5 20:06:30.919: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:06:30.92 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:30.954 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:30.958 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] custom resource defaulting for requests and from storage works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:269 + Apr 5 20:06:30.961: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:34.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "custom-resource-definition-2369" for this suite. 04/05/23 20:06:34.122 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + pod should support shared volumes between containers [Conformance] + test/e2e/common/storage/empty_dir.go:227 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:34.139 +Apr 5 20:06:34.139: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:06:34.14 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:34.158 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:34.161 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] pod should support shared volumes between containers [Conformance] + test/e2e/common/storage/empty_dir.go:227 +STEP: Creating Pod 04/05/23 20:06:34.164 +Apr 5 20:06:34.173: INFO: Waiting up to 5m0s for pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192" in namespace "emptydir-3664" to be "running" +Apr 5 20:06:34.180: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 6.619711ms +Apr 5 20:06:36.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011387859s +Apr 5 20:06:38.184: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010905644s +Apr 5 20:06:40.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Running", Reason="", readiness=false. Elapsed: 6.011244682s +Apr 5 20:06:40.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192" satisfied condition "running" +STEP: Reading file content from the nginx-container 04/05/23 20:06:40.185 +Apr 5 20:06:40.185: INFO: ExecWithOptions {Command:[/bin/sh -c cat /usr/share/volumeshare/shareddata.txt] Namespace:emptydir-3664 PodName:pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192 ContainerName:busybox-main-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:06:40.185: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:06:40.186: INFO: ExecWithOptions: Clientset creation +Apr 5 20:06:40.186: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/emptydir-3664/pods/pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192/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) +Apr 5 20:06:40.263: INFO: Exec stderr: "" +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:40.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-3664" for this suite. 04/05/23 20:06:40.269 +------------------------------ +• [SLOW TEST] [6.137 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + pod should support shared volumes between containers [Conformance] + test/e2e/common/storage/empty_dir.go:227 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:34.139 + Apr 5 20:06:34.139: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:06:34.14 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:34.158 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:34.161 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] pod should support shared volumes between containers [Conformance] + test/e2e/common/storage/empty_dir.go:227 + STEP: Creating Pod 04/05/23 20:06:34.164 + Apr 5 20:06:34.173: INFO: Waiting up to 5m0s for pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192" in namespace "emptydir-3664" to be "running" + Apr 5 20:06:34.180: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 6.619711ms + Apr 5 20:06:36.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011387859s + Apr 5 20:06:38.184: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010905644s + Apr 5 20:06:40.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192": Phase="Running", Reason="", readiness=false. Elapsed: 6.011244682s + Apr 5 20:06:40.185: INFO: Pod "pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192" satisfied condition "running" + STEP: Reading file content from the nginx-container 04/05/23 20:06:40.185 + Apr 5 20:06:40.185: INFO: ExecWithOptions {Command:[/bin/sh -c cat /usr/share/volumeshare/shareddata.txt] Namespace:emptydir-3664 PodName:pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192 ContainerName:busybox-main-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:06:40.185: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:06:40.186: INFO: ExecWithOptions: Clientset creation + Apr 5 20:06:40.186: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/emptydir-3664/pods/pod-sharedvolume-aca10b2b-74cf-4b3c-9b4c-8238c9ab2192/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) + Apr 5 20:06:40.263: INFO: Exec stderr: "" + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:40.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-3664" for this suite. 04/05/23 20:06:40.269 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSlice + should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/network/endpointslice.go:66 +[BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:40.278 +Apr 5 20:06:40.278: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename endpointslice 04/05/23 20:06:40.279 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.292 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.295 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 +[It] should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/network/endpointslice.go:66 +Apr 5 20:06:40.307: INFO: Endpoints addresses: [195.17.4.183 195.17.75.96 195.17.9.109] , ports: [6443] +Apr 5 20:06:40.307: INFO: EndpointSlices addresses: [195.17.4.183 195.17.75.96 195.17.9.109] , ports: [6443] +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:40.307: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 +STEP: Destroying namespace "endpointslice-3271" for this suite. 04/05/23 20:06:40.314 +------------------------------ +• [0.045 seconds] +[sig-network] EndpointSlice +test/e2e/network/common/framework.go:23 + should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/network/endpointslice.go:66 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:40.278 + Apr 5 20:06:40.278: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename endpointslice 04/05/23 20:06:40.279 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.292 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.295 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 + [It] should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/network/endpointslice.go:66 + Apr 5 20:06:40.307: INFO: Endpoints addresses: [195.17.4.183 195.17.75.96 195.17.9.109] , ports: [6443] + Apr 5 20:06:40.307: INFO: EndpointSlices addresses: [195.17.4.183 195.17.75.96 195.17.9.109] , ports: [6443] + [AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:40.307: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 + STEP: Destroying namespace "endpointslice-3271" for this suite. 04/05/23 20:06:40.314 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should apply an update to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:366 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:40.327 +Apr 5 20:06:40.328: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename namespaces 04/05/23 20:06:40.329 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.343 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.346 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 +[It] should apply an update to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:366 +STEP: Updating Namespace "namespaces-8593" 04/05/23 20:06:40.35 +Apr 5 20:06:40.358: INFO: Namespace "namespaces-8593" now has labels, map[string]string{"e2e-framework":"namespaces", "e2e-run":"60fac2e7-2f67-405e-b863-2e4212768928", "kubernetes.io/metadata.name":"namespaces-8593", "namespaces-8593":"updated", "pod-security.kubernetes.io/enforce":"baseline"} +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:40.358: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "namespaces-8593" for this suite. 04/05/23 20:06:40.362 +------------------------------ +• [0.042 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should apply an update to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:366 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:40.327 + Apr 5 20:06:40.328: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename namespaces 04/05/23 20:06:40.329 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.343 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.346 + [BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:31 + [It] should apply an update to a Namespace [Conformance] + test/e2e/apimachinery/namespace.go:366 + STEP: Updating Namespace "namespaces-8593" 04/05/23 20:06:40.35 + Apr 5 20:06:40.358: INFO: Namespace "namespaces-8593" now has labels, map[string]string{"e2e-framework":"namespaces", "e2e-run":"60fac2e7-2f67-405e-b863-2e4212768928", "kubernetes.io/metadata.name":"namespaces-8593", "namespaces-8593":"updated", "pod-security.kubernetes.io/enforce":"baseline"} + [AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:40.358: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Namespaces [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "namespaces-8593" for this suite. 04/05/23 20:06:40.362 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should test the lifecycle of an Endpoint [Conformance] + test/e2e/network/service.go:3244 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:40.372 +Apr 5 20:06:40.372: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:06:40.373 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.387 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.389 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should test the lifecycle of an Endpoint [Conformance] + test/e2e/network/service.go:3244 +STEP: creating an Endpoint 04/05/23 20:06:40.396 +STEP: waiting for available Endpoint 04/05/23 20:06:40.402 +STEP: listing all Endpoints 04/05/23 20:06:40.403 +STEP: updating the Endpoint 04/05/23 20:06:40.407 +STEP: fetching the Endpoint 04/05/23 20:06:40.413 +STEP: patching the Endpoint 04/05/23 20:06:40.417 +STEP: fetching the Endpoint 04/05/23 20:06:40.425 +STEP: deleting the Endpoint by Collection 04/05/23 20:06:40.429 +STEP: waiting for Endpoint deletion 04/05/23 20:06:40.442 +STEP: fetching the Endpoint 04/05/23 20:06:40.448 +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:40.452: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-9317" for this suite. 04/05/23 20:06:40.459 +------------------------------ +• [0.096 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should test the lifecycle of an Endpoint [Conformance] + test/e2e/network/service.go:3244 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:40.372 + Apr 5 20:06:40.372: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:06:40.373 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.387 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.389 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should test the lifecycle of an Endpoint [Conformance] + test/e2e/network/service.go:3244 + STEP: creating an Endpoint 04/05/23 20:06:40.396 + STEP: waiting for available Endpoint 04/05/23 20:06:40.402 + STEP: listing all Endpoints 04/05/23 20:06:40.403 + STEP: updating the Endpoint 04/05/23 20:06:40.407 + STEP: fetching the Endpoint 04/05/23 20:06:40.413 + STEP: patching the Endpoint 04/05/23 20:06:40.417 + STEP: fetching the Endpoint 04/05/23 20:06:40.425 + STEP: deleting the Endpoint by Collection 04/05/23 20:06:40.429 + STEP: waiting for Endpoint deletion 04/05/23 20:06:40.442 + STEP: fetching the Endpoint 04/05/23 20:06:40.448 + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:40.452: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-9317" for this suite. 04/05/23 20:06:40.459 + << End Captured GinkgoWriter Output +------------------------------ +[sig-storage] EmptyDir volumes + volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:157 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:40.472 +Apr 5 20:06:40.472: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:06:40.473 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.489 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.492 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:157 +STEP: Creating a pod to test emptydir volume type on node default medium 04/05/23 20:06:40.495 +Apr 5 20:06:40.509: INFO: Waiting up to 5m0s for pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80" in namespace "emptydir-3929" to be "Succeeded or Failed" +Apr 5 20:06:40.514: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 5.407814ms +Apr 5 20:06:42.522: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012972647s +Apr 5 20:06:44.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01024388s +Apr 5 20:06:46.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.010118118s +STEP: Saw pod success 04/05/23 20:06:46.519 +Apr 5 20:06:46.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80" satisfied condition "Succeeded or Failed" +Apr 5 20:06:46.522: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 container test-container: +STEP: delete the pod 04/05/23 20:06:46.532 +Apr 5 20:06:46.545: INFO: Waiting for pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 to disappear +Apr 5 20:06:46.549: INFO: Pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:06:46.549: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-3929" for this suite. 04/05/23 20:06:46.555 +------------------------------ +• [SLOW TEST] [6.089 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/common/storage/empty_dir.go:157 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:40.472 + Apr 5 20:06:40.472: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:06:40.473 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:40.489 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:40.492 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:157 + STEP: Creating a pod to test emptydir volume type on node default medium 04/05/23 20:06:40.495 + Apr 5 20:06:40.509: INFO: Waiting up to 5m0s for pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80" in namespace "emptydir-3929" to be "Succeeded or Failed" + Apr 5 20:06:40.514: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 5.407814ms + Apr 5 20:06:42.522: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012972647s + Apr 5 20:06:44.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01024388s + Apr 5 20:06:46.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.010118118s + STEP: Saw pod success 04/05/23 20:06:46.519 + Apr 5 20:06:46.519: INFO: Pod "pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80" satisfied condition "Succeeded or Failed" + Apr 5 20:06:46.522: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 container test-container: + STEP: delete the pod 04/05/23 20:06:46.532 + Apr 5 20:06:46.545: INFO: Waiting for pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 to disappear + Apr 5 20:06:46.549: INFO: Pod pod-7536eee6-5bec-451a-9278-8c2e8dcd6f80 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:06:46.549: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-3929" for this suite. 04/05/23 20:06:46.555 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/network/service.go:1557 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:06:46.562 +Apr 5 20:06:46.562: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:06:46.563 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:46.578 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:46.58 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/network/service.go:1557 +STEP: creating a service nodeport-service with the type=NodePort in namespace services-750 04/05/23 20:06:46.583 +STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service 04/05/23 20:06:46.61 +STEP: creating service externalsvc in namespace services-750 04/05/23 20:06:46.61 +STEP: creating replication controller externalsvc in namespace services-750 04/05/23 20:06:46.632 +I0405 20:06:46.644064 19 runners.go:193] Created replication controller with name: externalsvc, namespace: services-750, replica count: 2 +I0405 20:06:49.695980 19 runners.go:193] externalsvc Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:06:52.697230 19 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 04/05/23 20:06:52.701 +Apr 5 20:06:52.726: INFO: Creating new exec pod +Apr 5 20:06:52.734: INFO: Waiting up to 5m0s for pod "execpodkzm2d" in namespace "services-750" to be "running" +Apr 5 20:06:52.740: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.99276ms +Apr 5 20:06:54.744: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009192719s +Apr 5 20:06:56.745: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010876233s +Apr 5 20:06:58.744: INFO: Pod "execpodkzm2d": Phase="Running", Reason="", readiness=true. Elapsed: 6.009534702s +Apr 5 20:06:58.744: INFO: Pod "execpodkzm2d" satisfied condition "running" +Apr 5 20:06:58.744: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-750 exec execpodkzm2d -- /bin/sh -x -c nslookup nodeport-service.services-750.svc.cluster.local' +Apr 5 20:06:58.947: INFO: stderr: "+ nslookup nodeport-service.services-750.svc.cluster.local\n" +Apr 5 20:06:58.947: INFO: stdout: "Server:\t\t10.128.0.10\nAddress:\t10.128.0.10#53\n\nnodeport-service.services-750.svc.cluster.local\tcanonical name = externalsvc.services-750.svc.cluster.local.\nName:\texternalsvc.services-750.svc.cluster.local\nAddress: 10.136.0.105\n\n" +STEP: deleting ReplicationController externalsvc in namespace services-750, will wait for the garbage collector to delete the pods 04/05/23 20:06:58.947 +Apr 5 20:06:59.009: INFO: Deleting ReplicationController externalsvc took: 7.148868ms +Apr 5 20:06:59.110: INFO: Terminating ReplicationController externalsvc pods took: 100.998983ms +Apr 5 20:07:01.035: INFO: Cleaning up the NodePort to ExternalName test service +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:07:01.047: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-750" for this suite. 04/05/23 20:07:01.057 +------------------------------ +• [SLOW TEST] [14.501 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/network/service.go:1557 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:06:46.562 + Apr 5 20:06:46.562: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:06:46.563 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:06:46.578 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:06:46.58 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/network/service.go:1557 + STEP: creating a service nodeport-service with the type=NodePort in namespace services-750 04/05/23 20:06:46.583 + STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service 04/05/23 20:06:46.61 + STEP: creating service externalsvc in namespace services-750 04/05/23 20:06:46.61 + STEP: creating replication controller externalsvc in namespace services-750 04/05/23 20:06:46.632 + I0405 20:06:46.644064 19 runners.go:193] Created replication controller with name: externalsvc, namespace: services-750, replica count: 2 + I0405 20:06:49.695980 19 runners.go:193] externalsvc Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:06:52.697230 19 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 04/05/23 20:06:52.701 + Apr 5 20:06:52.726: INFO: Creating new exec pod + Apr 5 20:06:52.734: INFO: Waiting up to 5m0s for pod "execpodkzm2d" in namespace "services-750" to be "running" + Apr 5 20:06:52.740: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.99276ms + Apr 5 20:06:54.744: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009192719s + Apr 5 20:06:56.745: INFO: Pod "execpodkzm2d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010876233s + Apr 5 20:06:58.744: INFO: Pod "execpodkzm2d": Phase="Running", Reason="", readiness=true. Elapsed: 6.009534702s + Apr 5 20:06:58.744: INFO: Pod "execpodkzm2d" satisfied condition "running" + Apr 5 20:06:58.744: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-750 exec execpodkzm2d -- /bin/sh -x -c nslookup nodeport-service.services-750.svc.cluster.local' + Apr 5 20:06:58.947: INFO: stderr: "+ nslookup nodeport-service.services-750.svc.cluster.local\n" + Apr 5 20:06:58.947: INFO: stdout: "Server:\t\t10.128.0.10\nAddress:\t10.128.0.10#53\n\nnodeport-service.services-750.svc.cluster.local\tcanonical name = externalsvc.services-750.svc.cluster.local.\nName:\texternalsvc.services-750.svc.cluster.local\nAddress: 10.136.0.105\n\n" + STEP: deleting ReplicationController externalsvc in namespace services-750, will wait for the garbage collector to delete the pods 04/05/23 20:06:58.947 + Apr 5 20:06:59.009: INFO: Deleting ReplicationController externalsvc took: 7.148868ms + Apr 5 20:06:59.110: INFO: Terminating ReplicationController externalsvc pods took: 100.998983ms + Apr 5 20:07:01.035: INFO: Cleaning up the NodePort to ExternalName test service + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:07:01.047: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-750" for this suite. 04/05/23 20:07:01.057 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/apimachinery/watch.go:60 +[BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:07:01.064 +Apr 5 20:07:01.064: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename watch 04/05/23 20:07:01.066 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:01.081 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:01.083 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 +[It] should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/apimachinery/watch.go:60 +STEP: creating a watch on configmaps with label A 04/05/23 20:07:01.086 +STEP: creating a watch on configmaps with label B 04/05/23 20:07:01.088 +STEP: creating a watch on configmaps with label A or B 04/05/23 20:07:01.089 +STEP: creating a configmap with label A and ensuring the correct watchers observe the notification 04/05/23 20:07:01.09 +Apr 5 20:07:01.099: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136095 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Apr 5 20:07:01.099: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136095 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.099 +Apr 5 20:07:01.107: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136096 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} +Apr 5 20:07:01.107: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136096 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.107 +Apr 5 20:07:01.115: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136097 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} +Apr 5 20:07:01.115: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136097 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.115 +Apr 5 20:07:01.123: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136098 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} +Apr 5 20:07:01.123: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136098 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.123 +Apr 5 20:07:01.128: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136099 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Apr 5 20:07:01.128: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136099 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:11.129 +Apr 5 20:07:11.137: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136211 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Apr 5 20:07:11.137: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136211 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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/node/init/init.go:32 +Apr 5 20:07:21.137: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 +STEP: Destroying namespace "watch-7336" for this suite. 04/05/23 20:07:21.144 +------------------------------ +• [SLOW TEST] [20.094 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/apimachinery/watch.go:60 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:07:01.064 + Apr 5 20:07:01.064: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename watch 04/05/23 20:07:01.066 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:01.081 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:01.083 + [BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 + [It] should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/apimachinery/watch.go:60 + STEP: creating a watch on configmaps with label A 04/05/23 20:07:01.086 + STEP: creating a watch on configmaps with label B 04/05/23 20:07:01.088 + STEP: creating a watch on configmaps with label A or B 04/05/23 20:07:01.089 + STEP: creating a configmap with label A and ensuring the correct watchers observe the notification 04/05/23 20:07:01.09 + Apr 5 20:07:01.099: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136095 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} + Apr 5 20:07:01.099: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136095 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.099 + Apr 5 20:07:01.107: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136096 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} + Apr 5 20:07:01.107: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136096 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.107 + Apr 5 20:07:01.115: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136097 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} + Apr 5 20:07:01.115: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136097 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.115 + Apr 5 20:07:01.123: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136098 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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,} + Apr 5 20:07:01.123: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-7336 55e4cfa7-b345-4259-bc5c-33b3d251aa43 136098 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:01.123 + Apr 5 20:07:01.128: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136099 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} + Apr 5 20:07:01.128: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136099 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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 04/05/23 20:07:11.129 + Apr 5 20:07:11.137: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136211 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} + Apr 5 20:07:11.137: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-7336 840f2f22-704c-4c80-9f87-732c2d9a0b50 136211 0 2023-04-05 20:07:01 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2023-04-05 20:07:01 +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/node/init/init.go:32 + Apr 5 20:07:21.137: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 + STEP: Destroying namespace "watch-7336" for this suite. 04/05/23 20:07:21.144 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-storage] CSIInlineVolumes + should support CSIVolumeSource in Pod API [Conformance] + test/e2e/storage/csi_inline.go:131 +[BeforeEach] [sig-storage] CSIInlineVolumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:07:21.164 +Apr 5 20:07:21.165: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename csiinlinevolumes 04/05/23 20:07:21.165 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:21.182 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:21.185 +[BeforeEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support CSIVolumeSource in Pod API [Conformance] + test/e2e/storage/csi_inline.go:131 +STEP: creating 04/05/23 20:07:21.188 +STEP: getting 04/05/23 20:07:21.209 +STEP: listing in namespace 04/05/23 20:07:21.218 +STEP: patching 04/05/23 20:07:21.222 +STEP: deleting 04/05/23 20:07:21.23 +[AfterEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:07:21.242: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + tear down framework | framework.go:193 +STEP: Destroying namespace "csiinlinevolumes-7029" for this suite. 04/05/23 20:07:21.249 +------------------------------ +• [0.091 seconds] +[sig-storage] CSIInlineVolumes +test/e2e/storage/utils/framework.go:23 + should support CSIVolumeSource in Pod API [Conformance] + test/e2e/storage/csi_inline.go:131 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] CSIInlineVolumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:07:21.164 + Apr 5 20:07:21.165: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename csiinlinevolumes 04/05/23 20:07:21.165 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:21.182 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:21.185 + [BeforeEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support CSIVolumeSource in Pod API [Conformance] + test/e2e/storage/csi_inline.go:131 + STEP: creating 04/05/23 20:07:21.188 + STEP: getting 04/05/23 20:07:21.209 + STEP: listing in namespace 04/05/23 20:07:21.218 + STEP: patching 04/05/23 20:07:21.222 + STEP: deleting 04/05/23 20:07:21.23 + [AfterEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:07:21.242: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + tear down framework | framework.go:193 + STEP: Destroying namespace "csiinlinevolumes-7029" for this suite. 04/05/23 20:07:21.249 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/auth/service_accounts.go:742 +[BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:07:21.258 +Apr 5 20:07:21.258: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svcaccounts 04/05/23 20:07:21.259 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:21.273 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:21.276 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 +[It] should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/auth/service_accounts.go:742 +Apr 5 20:07:21.281: INFO: Got root ca configmap in namespace "svcaccounts-3084" +Apr 5 20:07:21.288: INFO: Deleted root ca configmap in namespace "svcaccounts-3084" +STEP: waiting for a new root ca configmap created 04/05/23 20:07:21.789 +Apr 5 20:07:21.793: INFO: Recreated root ca configmap in namespace "svcaccounts-3084" +Apr 5 20:07:21.801: INFO: Updated root ca configmap in namespace "svcaccounts-3084" +STEP: waiting for the root ca configmap reconciled 04/05/23 20:07:22.302 +Apr 5 20:07:22.307: INFO: Reconciled root ca configmap in namespace "svcaccounts-3084" +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 +Apr 5 20:07:22.307: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 +STEP: Destroying namespace "svcaccounts-3084" for this suite. 04/05/23 20:07:22.313 +------------------------------ +• [1.064 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/auth/service_accounts.go:742 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] ServiceAccounts + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:07:21.258 + Apr 5 20:07:21.258: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svcaccounts 04/05/23 20:07:21.259 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:21.273 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:21.276 + [BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:31 + [It] should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/auth/service_accounts.go:742 + Apr 5 20:07:21.281: INFO: Got root ca configmap in namespace "svcaccounts-3084" + Apr 5 20:07:21.288: INFO: Deleted root ca configmap in namespace "svcaccounts-3084" + STEP: waiting for a new root ca configmap created 04/05/23 20:07:21.789 + Apr 5 20:07:21.793: INFO: Recreated root ca configmap in namespace "svcaccounts-3084" + Apr 5 20:07:21.801: INFO: Updated root ca configmap in namespace "svcaccounts-3084" + STEP: waiting for the root ca configmap reconciled 04/05/23 20:07:22.302 + Apr 5 20:07:22.307: INFO: Reconciled root ca configmap in namespace "svcaccounts-3084" + [AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/node/init/init.go:32 + Apr 5 20:07:22.307: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] ServiceAccounts + tear down framework | framework.go:193 + STEP: Destroying namespace "svcaccounts-3084" for this suite. 04/05/23 20:07:22.313 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to create a functioning NodePort service [Conformance] + test/e2e/network/service.go:1302 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:07:22.324 +Apr 5 20:07:22.324: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:07:22.325 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:22.338 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:22.341 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to create a functioning NodePort service [Conformance] + test/e2e/network/service.go:1302 +STEP: creating service nodeport-test with type=NodePort in namespace services-4017 04/05/23 20:07:22.345 +STEP: creating replication controller nodeport-test in namespace services-4017 04/05/23 20:07:22.37 +I0405 20:07:22.389877 19 runners.go:193] Created replication controller with name: nodeport-test, namespace: services-4017, replica count: 2 +I0405 20:07:25.441754 19 runners.go:193] nodeport-test Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:07:28.442474 19 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 +Apr 5 20:07:28.442: INFO: Creating new exec pod +Apr 5 20:07:28.449: INFO: Waiting up to 5m0s for pod "execpod2xzs2" in namespace "services-4017" to be "running" +Apr 5 20:07:28.456: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.179606ms +Apr 5 20:07:30.461: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011196492s +Apr 5 20:07:32.462: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012508034s +Apr 5 20:07:34.461: INFO: Pod "execpod2xzs2": Phase="Running", Reason="", readiness=true. Elapsed: 6.011141776s +Apr 5 20:07:34.461: INFO: Pod "execpod2xzs2" satisfied condition "running" +Apr 5 20:07:35.466: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 nodeport-test 80' +Apr 5 20:07:35.647: INFO: stderr: "+ nc -v -z -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Apr 5 20:07:35.647: INFO: stdout: "" +Apr 5 20:07:35.647: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 10.138.100.145 80' +Apr 5 20:07:35.825: INFO: stderr: "+ nc -v -z -w 2 10.138.100.145 80\nConnection to 10.138.100.145 80 port [tcp/http] succeeded!\n" +Apr 5 20:07:35.825: INFO: stdout: "" +Apr 5 20:07:35.825: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.191 31724' +Apr 5 20:07:36.021: INFO: stderr: "+ nc -v -z -w 2 195.17.150.191 31724\nConnection to 195.17.150.191 31724 port [tcp/*] succeeded!\n" +Apr 5 20:07:36.021: INFO: stdout: "" +Apr 5 20:07:36.021: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 31724' +Apr 5 20:07:36.187: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 31724\nConnection to 195.17.150.192 31724 port [tcp/*] succeeded!\n" +Apr 5 20:07:36.187: INFO: stdout: "" +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:07:36.187: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-4017" for this suite. 04/05/23 20:07:36.194 +------------------------------ +• [SLOW TEST] [13.879 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to create a functioning NodePort service [Conformance] + test/e2e/network/service.go:1302 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:07:22.324 + Apr 5 20:07:22.324: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:07:22.325 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:22.338 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:22.341 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to create a functioning NodePort service [Conformance] + test/e2e/network/service.go:1302 + STEP: creating service nodeport-test with type=NodePort in namespace services-4017 04/05/23 20:07:22.345 + STEP: creating replication controller nodeport-test in namespace services-4017 04/05/23 20:07:22.37 + I0405 20:07:22.389877 19 runners.go:193] Created replication controller with name: nodeport-test, namespace: services-4017, replica count: 2 + I0405 20:07:25.441754 19 runners.go:193] nodeport-test Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:07:28.442474 19 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 + Apr 5 20:07:28.442: INFO: Creating new exec pod + Apr 5 20:07:28.449: INFO: Waiting up to 5m0s for pod "execpod2xzs2" in namespace "services-4017" to be "running" + Apr 5 20:07:28.456: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.179606ms + Apr 5 20:07:30.461: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011196492s + Apr 5 20:07:32.462: INFO: Pod "execpod2xzs2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012508034s + Apr 5 20:07:34.461: INFO: Pod "execpod2xzs2": Phase="Running", Reason="", readiness=true. Elapsed: 6.011141776s + Apr 5 20:07:34.461: INFO: Pod "execpod2xzs2" satisfied condition "running" + Apr 5 20:07:35.466: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 nodeport-test 80' + Apr 5 20:07:35.647: INFO: stderr: "+ nc -v -z -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" + Apr 5 20:07:35.647: INFO: stdout: "" + Apr 5 20:07:35.647: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 10.138.100.145 80' + Apr 5 20:07:35.825: INFO: stderr: "+ nc -v -z -w 2 10.138.100.145 80\nConnection to 10.138.100.145 80 port [tcp/http] succeeded!\n" + Apr 5 20:07:35.825: INFO: stdout: "" + Apr 5 20:07:35.825: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.191 31724' + Apr 5 20:07:36.021: INFO: stderr: "+ nc -v -z -w 2 195.17.150.191 31724\nConnection to 195.17.150.191 31724 port [tcp/*] succeeded!\n" + Apr 5 20:07:36.021: INFO: stdout: "" + Apr 5 20:07:36.021: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-4017 exec execpod2xzs2 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 31724' + Apr 5 20:07:36.187: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 31724\nConnection to 195.17.150.192 31724 port [tcp/*] succeeded!\n" + Apr 5 20:07:36.187: INFO: stdout: "" + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:07:36.187: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-4017" for this suite. 04/05/23 20:07:36.194 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/apps/statefulset.go:697 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:07:36.204 +Apr 5 20:07:36.204: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 20:07:36.205 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:36.22 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:36.222 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-4974 04/05/23 20:07:36.225 +[It] Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/apps/statefulset.go:697 +STEP: Creating stateful set ss in namespace statefulset-4974 04/05/23 20:07:36.231 +STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-4974 04/05/23 20:07:36.239 +Apr 5 20:07:36.243: INFO: Found 0 stateful pods, waiting for 1 +Apr 5 20:07:46.248: 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 04/05/23 20:07:46.249 +Apr 5 20:07:46.253: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:07:46.433: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:07:46.433: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:07:46.433: 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' + +Apr 5 20:07:46.437: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true +Apr 5 20:07:56.443: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:07:56.443: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:07:56.465: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 20:07:56.465: INFO: ss-0 ttneyla26-md-0-8474989c68-rj4zb Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:46 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:46 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC }] +Apr 5 20:07:56.465: INFO: +Apr 5 20:07:56.465: INFO: StatefulSet ss has not reached scale 3, at 1 +Apr 5 20:07:57.471: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.993358368s +Apr 5 20:07:58.478: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.986474927s +Apr 5 20:07:59.486: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.981035127s +Apr 5 20:08:00.491: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.9724499s +Apr 5 20:08:01.497: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.967531263s +Apr 5 20:08:02.503: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.962906241s +Apr 5 20:08:03.509: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.955946857s +Apr 5 20:08:04.514: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.949481871s +Apr 5 20:08:05.519: INFO: Verifying statefulset ss doesn't scale past 3 for another 945.333403ms +STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-4974 04/05/23 20:08:06.519 +Apr 5 20:08:06.524: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:08:06.703: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 20:08:06.703: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:08:06.703: 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' + +Apr 5 20:08:06.703: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:08:06.887: 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" +Apr 5 20:08:06.887: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:08:06.887: 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' + +Apr 5 20:08:06.887: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:08:07.093: 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" +Apr 5 20:08:07.093: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:08:07.093: 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' + +Apr 5 20:08:07.098: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=false +Apr 5 20:08:17.105: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:08:17.105: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:08:17.105: 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 04/05/23 20:08:17.105 +Apr 5 20:08:17.109: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:08:17.286: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:08:17.286: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:08:17.286: 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' + +Apr 5 20:08:17.287: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:08:17.478: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:08:17.478: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:08:17.478: 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' + +Apr 5 20:08:17.478: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:08:17.656: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:08:17.656: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:08:17.656: 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' + +Apr 5 20:08:17.656: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:08:17.660: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 2 +Apr 5 20:08:27.670: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:08:27.670: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:08:27.670: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:08:27.684: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 20:08:27.684: INFO: ss-0 ttneyla26-md-0-8474989c68-rj4zb Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC }] +Apr 5 20:08:27.684: INFO: ss-1 ttneyla26-md-0-8474989c68-wbqh5 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] +Apr 5 20:08:27.684: INFO: ss-2 ttneyla26-md-0-8474989c68-jf7bt Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] +Apr 5 20:08:27.684: INFO: +Apr 5 20:08:27.684: INFO: StatefulSet ss has not reached scale 0, at 3 +Apr 5 20:08:28.689: INFO: POD NODE PHASE GRACE CONDITIONS +Apr 5 20:08:28.689: INFO: ss-1 ttneyla26-md-0-8474989c68-wbqh5 Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] +Apr 5 20:08:28.690: INFO: ss-2 ttneyla26-md-0-8474989c68-jf7bt Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] +Apr 5 20:08:28.690: INFO: +Apr 5 20:08:28.690: INFO: StatefulSet ss has not reached scale 0, at 2 +Apr 5 20:08:29.694: INFO: Verifying statefulset ss doesn't scale past 0 for another 7.98941024s +Apr 5 20:08:30.699: INFO: Verifying statefulset ss doesn't scale past 0 for another 6.985719614s +Apr 5 20:08:31.704: INFO: Verifying statefulset ss doesn't scale past 0 for another 5.980975023s +Apr 5 20:08:32.710: INFO: Verifying statefulset ss doesn't scale past 0 for another 4.975608257s +Apr 5 20:08:33.714: INFO: Verifying statefulset ss doesn't scale past 0 for another 3.97030633s +Apr 5 20:08:34.719: INFO: Verifying statefulset ss doesn't scale past 0 for another 2.96463293s +Apr 5 20:08:35.724: INFO: Verifying statefulset ss doesn't scale past 0 for another 1.960803944s +Apr 5 20:08:36.729: INFO: Verifying statefulset ss doesn't scale past 0 for another 956.264458ms +STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-4974 04/05/23 20:08:37.729 +Apr 5 20:08:37.733: INFO: Scaling statefulset ss to 0 +Apr 5 20:08:37.745: INFO: Waiting for statefulset status.replicas updated to 0 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 20:08:37.748: INFO: Deleting all statefulset in ns statefulset-4974 +Apr 5 20:08:37.751: INFO: Scaling statefulset ss to 0 +Apr 5 20:08:37.761: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:08:37.764: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:08:37.780: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-4974" for this suite. 04/05/23 20:08:37.797 +------------------------------ +• [SLOW TEST] [61.601 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/apps/statefulset.go:697 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:07:36.204 + Apr 5 20:07:36.204: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 20:07:36.205 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:07:36.22 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:07:36.222 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-4974 04/05/23 20:07:36.225 + [It] Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/apps/statefulset.go:697 + STEP: Creating stateful set ss in namespace statefulset-4974 04/05/23 20:07:36.231 + STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-4974 04/05/23 20:07:36.239 + Apr 5 20:07:36.243: INFO: Found 0 stateful pods, waiting for 1 + Apr 5 20:07:46.248: 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 04/05/23 20:07:46.249 + Apr 5 20:07:46.253: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:07:46.433: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:07:46.433: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:07:46.433: 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' + + Apr 5 20:07:46.437: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true + Apr 5 20:07:56.443: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:07:56.443: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:07:56.465: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 20:07:56.465: INFO: ss-0 ttneyla26-md-0-8474989c68-rj4zb Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:46 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:46 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC }] + Apr 5 20:07:56.465: INFO: + Apr 5 20:07:56.465: INFO: StatefulSet ss has not reached scale 3, at 1 + Apr 5 20:07:57.471: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.993358368s + Apr 5 20:07:58.478: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.986474927s + Apr 5 20:07:59.486: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.981035127s + Apr 5 20:08:00.491: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.9724499s + Apr 5 20:08:01.497: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.967531263s + Apr 5 20:08:02.503: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.962906241s + Apr 5 20:08:03.509: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.955946857s + Apr 5 20:08:04.514: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.949481871s + Apr 5 20:08:05.519: INFO: Verifying statefulset ss doesn't scale past 3 for another 945.333403ms + STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-4974 04/05/23 20:08:06.519 + Apr 5 20:08:06.524: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:08:06.703: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 20:08:06.703: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:08:06.703: 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' + + Apr 5 20:08:06.703: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:08:06.887: 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" + Apr 5 20:08:06.887: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:08:06.887: 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' + + Apr 5 20:08:06.887: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:08:07.093: 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" + Apr 5 20:08:07.093: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:08:07.093: 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' + + Apr 5 20:08:07.098: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=false + Apr 5 20:08:17.105: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:08:17.105: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:08:17.105: 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 04/05/23 20:08:17.105 + Apr 5 20:08:17.109: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:08:17.286: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:08:17.286: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:08:17.286: 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' + + Apr 5 20:08:17.287: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:08:17.478: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:08:17.478: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:08:17.478: 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' + + Apr 5 20:08:17.478: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4974 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:08:17.656: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:08:17.656: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:08:17.656: 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' + + Apr 5 20:08:17.656: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:08:17.660: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 2 + Apr 5 20:08:27.670: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:08:27.670: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:08:27.670: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:08:27.684: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 20:08:27.684: INFO: ss-0 ttneyla26-md-0-8474989c68-rj4zb Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:36 +0000 UTC }] + Apr 5 20:08:27.684: INFO: ss-1 ttneyla26-md-0-8474989c68-wbqh5 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] + Apr 5 20:08:27.684: INFO: ss-2 ttneyla26-md-0-8474989c68-jf7bt Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] + Apr 5 20:08:27.684: INFO: + Apr 5 20:08:27.684: INFO: StatefulSet ss has not reached scale 0, at 3 + Apr 5 20:08:28.689: INFO: POD NODE PHASE GRACE CONDITIONS + Apr 5 20:08:28.689: INFO: ss-1 ttneyla26-md-0-8474989c68-wbqh5 Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] + Apr 5 20:08:28.690: INFO: ss-2 ttneyla26-md-0-8474989c68-jf7bt Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:08:17 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:07:56 +0000 UTC }] + Apr 5 20:08:28.690: INFO: + Apr 5 20:08:28.690: INFO: StatefulSet ss has not reached scale 0, at 2 + Apr 5 20:08:29.694: INFO: Verifying statefulset ss doesn't scale past 0 for another 7.98941024s + Apr 5 20:08:30.699: INFO: Verifying statefulset ss doesn't scale past 0 for another 6.985719614s + Apr 5 20:08:31.704: INFO: Verifying statefulset ss doesn't scale past 0 for another 5.980975023s + Apr 5 20:08:32.710: INFO: Verifying statefulset ss doesn't scale past 0 for another 4.975608257s + Apr 5 20:08:33.714: INFO: Verifying statefulset ss doesn't scale past 0 for another 3.97030633s + Apr 5 20:08:34.719: INFO: Verifying statefulset ss doesn't scale past 0 for another 2.96463293s + Apr 5 20:08:35.724: INFO: Verifying statefulset ss doesn't scale past 0 for another 1.960803944s + Apr 5 20:08:36.729: INFO: Verifying statefulset ss doesn't scale past 0 for another 956.264458ms + STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-4974 04/05/23 20:08:37.729 + Apr 5 20:08:37.733: INFO: Scaling statefulset ss to 0 + Apr 5 20:08:37.745: INFO: Waiting for statefulset status.replicas updated to 0 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 20:08:37.748: INFO: Deleting all statefulset in ns statefulset-4974 + Apr 5 20:08:37.751: INFO: Scaling statefulset ss to 0 + Apr 5 20:08:37.761: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:08:37.764: INFO: Deleting statefulset ss + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:08:37.780: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-4974" for this suite. 04/05/23 20:08:37.797 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSlice + should support creating EndpointSlice API operations [Conformance] + test/e2e/network/endpointslice.go:353 +[BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:08:37.806 +Apr 5 20:08:37.806: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename endpointslice 04/05/23 20:08:37.807 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:37.82 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:37.822 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 +[It] should support creating EndpointSlice API operations [Conformance] + test/e2e/network/endpointslice.go:353 +STEP: getting /apis 04/05/23 20:08:37.826 +STEP: getting /apis/discovery.k8s.io 04/05/23 20:08:37.83 +STEP: getting /apis/discovery.k8s.iov1 04/05/23 20:08:37.832 +STEP: creating 04/05/23 20:08:37.834 +STEP: getting 04/05/23 20:08:37.861 +STEP: listing 04/05/23 20:08:37.865 +STEP: watching 04/05/23 20:08:37.869 +Apr 5 20:08:37.869: INFO: starting watch +STEP: cluster-wide listing 04/05/23 20:08:37.872 +STEP: cluster-wide watching 04/05/23 20:08:37.88 +Apr 5 20:08:37.880: INFO: starting watch +STEP: patching 04/05/23 20:08:37.881 +STEP: updating 04/05/23 20:08:37.892 +Apr 5 20:08:37.904: INFO: waiting for watch events with expected annotations +Apr 5 20:08:37.904: INFO: saw patched and updated annotations +STEP: deleting 04/05/23 20:08:37.904 +STEP: deleting a collection 04/05/23 20:08:37.922 +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 +Apr 5 20:08:37.938: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 +STEP: Destroying namespace "endpointslice-337" for this suite. 04/05/23 20:08:37.943 +------------------------------ +• [0.151 seconds] +[sig-network] EndpointSlice +test/e2e/network/common/framework.go:23 + should support creating EndpointSlice API operations [Conformance] + test/e2e/network/endpointslice.go:353 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] EndpointSlice + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:08:37.806 + Apr 5 20:08:37.806: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename endpointslice 04/05/23 20:08:37.807 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:37.82 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:37.822 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:52 + [It] should support creating EndpointSlice API operations [Conformance] + test/e2e/network/endpointslice.go:353 + STEP: getting /apis 04/05/23 20:08:37.826 + STEP: getting /apis/discovery.k8s.io 04/05/23 20:08:37.83 + STEP: getting /apis/discovery.k8s.iov1 04/05/23 20:08:37.832 + STEP: creating 04/05/23 20:08:37.834 + STEP: getting 04/05/23 20:08:37.861 + STEP: listing 04/05/23 20:08:37.865 + STEP: watching 04/05/23 20:08:37.869 + Apr 5 20:08:37.869: INFO: starting watch + STEP: cluster-wide listing 04/05/23 20:08:37.872 + STEP: cluster-wide watching 04/05/23 20:08:37.88 + Apr 5 20:08:37.880: INFO: starting watch + STEP: patching 04/05/23 20:08:37.881 + STEP: updating 04/05/23 20:08:37.892 + Apr 5 20:08:37.904: INFO: waiting for watch events with expected annotations + Apr 5 20:08:37.904: INFO: saw patched and updated annotations + STEP: deleting 04/05/23 20:08:37.904 + STEP: deleting a collection 04/05/23 20:08:37.922 + [AfterEach] [sig-network] EndpointSlice + test/e2e/framework/node/init/init.go:32 + Apr 5 20:08:37.938: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] EndpointSlice + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] EndpointSlice + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] EndpointSlice + tear down framework | framework.go:193 + STEP: Destroying namespace "endpointslice-337" for this suite. 04/05/23 20:08:37.943 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl cluster-info + should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/kubectl/kubectl.go:1250 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:08:37.961 +Apr 5 20:08:37.961: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:08:37.962 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.045 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.048 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/kubectl/kubectl.go:1250 +STEP: validating cluster-info 04/05/23 20:08:38.052 +Apr 5 20:08:38.052: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9729 cluster-info' +Apr 5 20:08:38.148: INFO: stderr: "" +Apr 5 20:08:38.148: INFO: stdout: "\x1b[0;32mKubernetes control plane\x1b[0m is running at \x1b[0;33mhttps://10.128.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/node/init/init.go:32 +Apr 5 20:08:38.148: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-9729" for this suite. 04/05/23 20:08:38.154 +------------------------------ +• [0.201 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl cluster-info + test/e2e/kubectl/kubectl.go:1244 + should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/kubectl/kubectl.go:1250 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:08:37.961 + Apr 5 20:08:37.961: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:08:37.962 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.045 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.048 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/kubectl/kubectl.go:1250 + STEP: validating cluster-info 04/05/23 20:08:38.052 + Apr 5 20:08:38.052: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9729 cluster-info' + Apr 5 20:08:38.148: INFO: stderr: "" + Apr 5 20:08:38.148: INFO: stdout: "\x1b[0;32mKubernetes control plane\x1b[0m is running at \x1b[0;33mhttps://10.128.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/node/init/init.go:32 + Apr 5 20:08:38.148: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-9729" for this suite. 04/05/23 20:08:38.154 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should support CronJob API operations [Conformance] + test/e2e/apps/cronjob.go:319 +[BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:08:38.162 +Apr 5 20:08:38.162: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename cronjob 04/05/23 20:08:38.164 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.182 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.185 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 +[It] should support CronJob API operations [Conformance] + test/e2e/apps/cronjob.go:319 +STEP: Creating a cronjob 04/05/23 20:08:38.189 +STEP: creating 04/05/23 20:08:38.189 +STEP: getting 04/05/23 20:08:38.196 +STEP: listing 04/05/23 20:08:38.199 +STEP: watching 04/05/23 20:08:38.203 +Apr 5 20:08:38.203: INFO: starting watch +STEP: cluster-wide listing 04/05/23 20:08:38.204 +STEP: cluster-wide watching 04/05/23 20:08:38.207 +Apr 5 20:08:38.208: INFO: starting watch +STEP: patching 04/05/23 20:08:38.209 +STEP: updating 04/05/23 20:08:38.216 +Apr 5 20:08:38.224: INFO: waiting for watch events with expected annotations +Apr 5 20:08:38.225: INFO: saw patched and updated annotations +STEP: patching /status 04/05/23 20:08:38.225 +STEP: updating /status 04/05/23 20:08:38.235 +STEP: get /status 04/05/23 20:08:38.242 +STEP: deleting 04/05/23 20:08:38.246 +STEP: deleting a collection 04/05/23 20:08:38.259 +[AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 +Apr 5 20:08:38.271: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 +STEP: Destroying namespace "cronjob-1719" for this suite. 04/05/23 20:08:38.277 +------------------------------ +• [0.121 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should support CronJob API operations [Conformance] + test/e2e/apps/cronjob.go:319 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] CronJob + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:08:38.162 + Apr 5 20:08:38.162: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename cronjob 04/05/23 20:08:38.164 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.182 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.185 + [BeforeEach] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:31 + [It] should support CronJob API operations [Conformance] + test/e2e/apps/cronjob.go:319 + STEP: Creating a cronjob 04/05/23 20:08:38.189 + STEP: creating 04/05/23 20:08:38.189 + STEP: getting 04/05/23 20:08:38.196 + STEP: listing 04/05/23 20:08:38.199 + STEP: watching 04/05/23 20:08:38.203 + Apr 5 20:08:38.203: INFO: starting watch + STEP: cluster-wide listing 04/05/23 20:08:38.204 + STEP: cluster-wide watching 04/05/23 20:08:38.207 + Apr 5 20:08:38.208: INFO: starting watch + STEP: patching 04/05/23 20:08:38.209 + STEP: updating 04/05/23 20:08:38.216 + Apr 5 20:08:38.224: INFO: waiting for watch events with expected annotations + Apr 5 20:08:38.225: INFO: saw patched and updated annotations + STEP: patching /status 04/05/23 20:08:38.225 + STEP: updating /status 04/05/23 20:08:38.235 + STEP: get /status 04/05/23 20:08:38.242 + STEP: deleting 04/05/23 20:08:38.246 + STEP: deleting a collection 04/05/23 20:08:38.259 + [AfterEach] [sig-apps] CronJob + test/e2e/framework/node/init/init.go:32 + Apr 5 20:08:38.271: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] CronJob + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] CronJob + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] CronJob + tear down framework | framework.go:193 + STEP: Destroying namespace "cronjob-1719" for this suite. 04/05/23 20:08:38.277 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/common/node/expansion.go:225 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:08:38.294 +Apr 5 20:08:38.294: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 20:08:38.295 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.309 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.312 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/common/node/expansion.go:225 +STEP: creating the pod with failed condition 04/05/23 20:08:38.315 +Apr 5 20:08:38.323: INFO: Waiting up to 2m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" to be "running" +Apr 5 20:08:38.327: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.005948ms +Apr 5 20:08:40.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008430836s +Apr 5 20:08:42.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008116837s +Apr 5 20:08:44.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010078105s +Apr 5 20:08:46.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009862068s +Apr 5 20:08:48.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010359915s +Apr 5 20:08:50.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009460172s +Apr 5 20:08:52.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 14.00930955s +Apr 5 20:08:54.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 16.008402009s +Apr 5 20:08:56.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 18.010780023s +Apr 5 20:08:58.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 20.008431179s +Apr 5 20:09:00.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 22.009026987s +Apr 5 20:09:02.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 24.008820157s +Apr 5 20:09:04.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 26.00835571s +Apr 5 20:09:06.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 28.010080582s +Apr 5 20:09:08.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 30.009478589s +Apr 5 20:09:10.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 32.008997418s +Apr 5 20:09:12.336: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 34.012819993s +Apr 5 20:09:14.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 36.009600136s +Apr 5 20:09:16.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 38.007925692s +Apr 5 20:09:18.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 40.008265598s +Apr 5 20:09:20.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 42.009447418s +Apr 5 20:09:22.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 44.008129177s +Apr 5 20:09:24.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 46.009473833s +Apr 5 20:09:26.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 48.010028955s +Apr 5 20:09:28.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 50.007835014s +Apr 5 20:09:30.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 52.010938936s +Apr 5 20:09:32.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 54.010850965s +Apr 5 20:09:34.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 56.008164965s +Apr 5 20:09:36.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 58.010199536s +Apr 5 20:09:38.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m0.008483757s +Apr 5 20:09:40.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m2.008365722s +Apr 5 20:09:42.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m4.008706644s +Apr 5 20:09:44.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m6.010182907s +Apr 5 20:09:46.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m8.009252204s +Apr 5 20:09:48.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m10.008470195s +Apr 5 20:09:50.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m12.009853975s +Apr 5 20:09:52.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m14.008640892s +Apr 5 20:09:54.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m16.008691066s +Apr 5 20:09:56.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m18.010672453s +Apr 5 20:09:58.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m20.007855087s +Apr 5 20:10:00.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m22.009455105s +Apr 5 20:10:02.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m24.008817118s +Apr 5 20:10:04.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m26.009375153s +Apr 5 20:10:06.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m28.008234889s +Apr 5 20:10:08.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m30.011202173s +Apr 5 20:10:10.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m32.008435768s +Apr 5 20:10:12.408: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m34.084610355s +Apr 5 20:10:14.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m36.008878629s +Apr 5 20:10:16.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m38.009861908s +Apr 5 20:10:18.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m40.008952498s +Apr 5 20:10:20.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m42.010616855s +Apr 5 20:10:22.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m44.007983444s +Apr 5 20:10:24.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m46.009960764s +Apr 5 20:10:26.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m48.009390146s +Apr 5 20:10:28.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m50.009617251s +Apr 5 20:10:30.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m52.008329245s +Apr 5 20:10:32.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m54.009508011s +Apr 5 20:10:34.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m56.008154976s +Apr 5 20:10:36.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m58.009798985s +Apr 5 20:10:38.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.00841873s +Apr 5 20:10:38.336: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.012379577s +STEP: updating the pod 04/05/23 20:10:38.336 +Apr 5 20:10:38.849: INFO: Successfully updated pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" +STEP: waiting for pod running 04/05/23 20:10:38.849 +Apr 5 20:10:38.849: INFO: Waiting up to 2m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" to be "running" +Apr 5 20:10:38.854: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.316195ms +Apr 5 20:10:40.859: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Running", Reason="", readiness=true. Elapsed: 2.009175653s +Apr 5 20:10:40.859: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" satisfied condition "running" +STEP: deleting the pod gracefully 04/05/23 20:10:40.859 +Apr 5 20:10:40.859: INFO: Deleting pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" +Apr 5 20:10:40.867: INFO: Wait up to 5m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 20:11:12.875: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-7388" for this suite. 04/05/23 20:11:12.88 +------------------------------ +• [SLOW TEST] [154.595 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/common/node/expansion.go:225 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:08:38.294 + Apr 5 20:08:38.294: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 20:08:38.295 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:08:38.309 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:08:38.312 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/common/node/expansion.go:225 + STEP: creating the pod with failed condition 04/05/23 20:08:38.315 + Apr 5 20:08:38.323: INFO: Waiting up to 2m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" to be "running" + Apr 5 20:08:38.327: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.005948ms + Apr 5 20:08:40.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008430836s + Apr 5 20:08:42.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008116837s + Apr 5 20:08:44.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 6.010078105s + Apr 5 20:08:46.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 8.009862068s + Apr 5 20:08:48.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 10.010359915s + Apr 5 20:08:50.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 12.009460172s + Apr 5 20:08:52.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 14.00930955s + Apr 5 20:08:54.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 16.008402009s + Apr 5 20:08:56.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 18.010780023s + Apr 5 20:08:58.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 20.008431179s + Apr 5 20:09:00.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 22.009026987s + Apr 5 20:09:02.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 24.008820157s + Apr 5 20:09:04.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 26.00835571s + Apr 5 20:09:06.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 28.010080582s + Apr 5 20:09:08.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 30.009478589s + Apr 5 20:09:10.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 32.008997418s + Apr 5 20:09:12.336: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 34.012819993s + Apr 5 20:09:14.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 36.009600136s + Apr 5 20:09:16.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 38.007925692s + Apr 5 20:09:18.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 40.008265598s + Apr 5 20:09:20.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 42.009447418s + Apr 5 20:09:22.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 44.008129177s + Apr 5 20:09:24.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 46.009473833s + Apr 5 20:09:26.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 48.010028955s + Apr 5 20:09:28.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 50.007835014s + Apr 5 20:09:30.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 52.010938936s + Apr 5 20:09:32.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 54.010850965s + Apr 5 20:09:34.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 56.008164965s + Apr 5 20:09:36.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 58.010199536s + Apr 5 20:09:38.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m0.008483757s + Apr 5 20:09:40.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m2.008365722s + Apr 5 20:09:42.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m4.008706644s + Apr 5 20:09:44.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m6.010182907s + Apr 5 20:09:46.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m8.009252204s + Apr 5 20:09:48.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m10.008470195s + Apr 5 20:09:50.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m12.009853975s + Apr 5 20:09:52.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m14.008640892s + Apr 5 20:09:54.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m16.008691066s + Apr 5 20:09:56.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m18.010672453s + Apr 5 20:09:58.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m20.007855087s + Apr 5 20:10:00.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m22.009455105s + Apr 5 20:10:02.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m24.008817118s + Apr 5 20:10:04.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m26.009375153s + Apr 5 20:10:06.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m28.008234889s + Apr 5 20:10:08.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m30.011202173s + Apr 5 20:10:10.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m32.008435768s + Apr 5 20:10:12.408: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m34.084610355s + Apr 5 20:10:14.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m36.008878629s + Apr 5 20:10:16.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m38.009861908s + Apr 5 20:10:18.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m40.008952498s + Apr 5 20:10:20.334: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m42.010616855s + Apr 5 20:10:22.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m44.007983444s + Apr 5 20:10:24.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m46.009960764s + Apr 5 20:10:26.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m48.009390146s + Apr 5 20:10:28.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m50.009617251s + Apr 5 20:10:30.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m52.008329245s + Apr 5 20:10:32.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m54.009508011s + Apr 5 20:10:34.331: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m56.008154976s + Apr 5 20:10:36.333: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 1m58.009798985s + Apr 5 20:10:38.332: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.00841873s + Apr 5 20:10:38.336: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 2m0.012379577s + STEP: updating the pod 04/05/23 20:10:38.336 + Apr 5 20:10:38.849: INFO: Successfully updated pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" + STEP: waiting for pod running 04/05/23 20:10:38.849 + Apr 5 20:10:38.849: INFO: Waiting up to 2m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" to be "running" + Apr 5 20:10:38.854: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.316195ms + Apr 5 20:10:40.859: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e": Phase="Running", Reason="", readiness=true. Elapsed: 2.009175653s + Apr 5 20:10:40.859: INFO: Pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" satisfied condition "running" + STEP: deleting the pod gracefully 04/05/23 20:10:40.859 + Apr 5 20:10:40.859: INFO: Deleting pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" in namespace "var-expansion-7388" + Apr 5 20:10:40.867: INFO: Wait up to 5m0s for pod "var-expansion-6eb524f7-3af3-4b8b-9a3e-54155f89b88e" to be fully deleted + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 20:11:12.875: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-7388" for this suite. 04/05/23 20:11:12.88 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny pod and configmap creation [Conformance] + test/e2e/apimachinery/webhook.go:197 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:11:12.893 +Apr 5 20:11:12.893: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 20:11:12.894 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:12.909 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:12.911 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 20:11:12.926 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 20:11:13.135 +STEP: Deploying the webhook pod 04/05/23 20:11:13.143 +STEP: Wait for the deployment to be ready 04/05/23 20:11:13.159 +Apr 5 20:11:13.168: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 20:11:15.180: 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(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 20:11:17.186: 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(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 20:11:19.187 +STEP: Verifying the service has paired with the endpoint 04/05/23 20:11:19.206 +Apr 5 20:11:20.206: 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/apimachinery/webhook.go:197 +STEP: Registering the webhook via the AdmissionRegistration API 04/05/23 20:11:20.21 +STEP: create a pod that should be denied by the webhook 04/05/23 20:11:20.228 +STEP: create a pod that causes the webhook to hang 04/05/23 20:11:20.239 +STEP: create a configmap that should be denied by the webhook 04/05/23 20:11:30.248 +STEP: create a configmap that should be admitted by the webhook 04/05/23 20:11:30.258 +STEP: update (PUT) the admitted configmap to a non-compliant one should be rejected by the webhook 04/05/23 20:11:30.269 +STEP: update (PATCH) the admitted configmap to a non-compliant one should be rejected by the webhook 04/05/23 20:11:30.278 +STEP: create a namespace that bypass the webhook 04/05/23 20:11:30.286 +STEP: create a configmap that violates the webhook policy but is in a whitelisted namespace 04/05/23 20:11:30.293 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:11:30.322: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-1808" for this suite. 04/05/23 20:11:30.384 +STEP: Destroying namespace "webhook-1808-markers" for this suite. 04/05/23 20:11:30.394 +------------------------------ +• [SLOW TEST] [17.517 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/apimachinery/webhook.go:197 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:11:12.893 + Apr 5 20:11:12.893: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 20:11:12.894 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:12.909 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:12.911 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 20:11:12.926 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 20:11:13.135 + STEP: Deploying the webhook pod 04/05/23 20:11:13.143 + STEP: Wait for the deployment to be ready 04/05/23 20:11:13.159 + Apr 5 20:11:13.168: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 20:11:15.180: 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(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 20:11:17.186: 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(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 11, 13, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 20:11:19.187 + STEP: Verifying the service has paired with the endpoint 04/05/23 20:11:19.206 + Apr 5 20:11:20.206: 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/apimachinery/webhook.go:197 + STEP: Registering the webhook via the AdmissionRegistration API 04/05/23 20:11:20.21 + STEP: create a pod that should be denied by the webhook 04/05/23 20:11:20.228 + STEP: create a pod that causes the webhook to hang 04/05/23 20:11:20.239 + STEP: create a configmap that should be denied by the webhook 04/05/23 20:11:30.248 + STEP: create a configmap that should be admitted by the webhook 04/05/23 20:11:30.258 + STEP: update (PUT) the admitted configmap to a non-compliant one should be rejected by the webhook 04/05/23 20:11:30.269 + STEP: update (PATCH) the admitted configmap to a non-compliant one should be rejected by the webhook 04/05/23 20:11:30.278 + STEP: create a namespace that bypass the webhook 04/05/23 20:11:30.286 + STEP: create a configmap that violates the webhook policy but is in a whitelisted namespace 04/05/23 20:11:30.293 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:11:30.322: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-1808" for this suite. 04/05/23 20:11:30.384 + STEP: Destroying namespace "webhook-1808-markers" for this suite. 04/05/23 20:11:30.394 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Update Demo + should create and stop a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:339 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:11:30.41 +Apr 5 20:11:30.410: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:11:30.414 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:30.432 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:30.44 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:326 +[It] should create and stop a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:339 +STEP: creating a replication controller 04/05/23 20:11:30.446 +Apr 5 20:11:30.447: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 create -f -' +Apr 5 20:11:32.520: INFO: stderr: "" +Apr 5 20:11:32.520: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" +STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 20:11:32.52 +Apr 5 20:11:32.520: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 20:11:32.625: INFO: stderr: "" +Apr 5 20:11:32.625: INFO: stdout: "update-demo-nautilus-bvsb6 update-demo-nautilus-kmtcv " +Apr 5 20:11:32.625: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 20:11:32.716: INFO: stderr: "" +Apr 5 20:11:32.716: INFO: stdout: "" +Apr 5 20:11:32.716: INFO: update-demo-nautilus-bvsb6 is created but not running +Apr 5 20:11:37.716: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Apr 5 20:11:37.809: INFO: stderr: "" +Apr 5 20:11:37.809: INFO: stdout: "update-demo-nautilus-bvsb6 update-demo-nautilus-kmtcv " +Apr 5 20:11:37.809: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 20:11:37.900: INFO: stderr: "" +Apr 5 20:11:37.901: INFO: stdout: "true" +Apr 5 20:11:37.901: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 20:11:37.990: INFO: stderr: "" +Apr 5 20:11:37.990: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 20:11:37.990: INFO: validating pod update-demo-nautilus-bvsb6 +Apr 5 20:11:37.998: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 20:11:37.998: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 20:11:37.998: INFO: update-demo-nautilus-bvsb6 is verified up and running +Apr 5 20:11:37.998: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-kmtcv -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Apr 5 20:11:38.099: INFO: stderr: "" +Apr 5 20:11:38.099: INFO: stdout: "true" +Apr 5 20:11:38.100: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-kmtcv -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Apr 5 20:11:38.189: INFO: stderr: "" +Apr 5 20:11:38.189: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" +Apr 5 20:11:38.189: INFO: validating pod update-demo-nautilus-kmtcv +Apr 5 20:11:38.195: INFO: got data: { + "image": "nautilus.jpg" +} + +Apr 5 20:11:38.195: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Apr 5 20:11:38.195: INFO: update-demo-nautilus-kmtcv is verified up and running +STEP: using delete to clean up resources 04/05/23 20:11:38.195 +Apr 5 20:11:38.196: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 delete --grace-period=0 --force -f -' +Apr 5 20:11:38.286: 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" +Apr 5 20:11:38.289: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" +Apr 5 20:11:38.289: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get rc,svc -l name=update-demo --no-headers' +Apr 5 20:11:38.394: INFO: stderr: "No resources found in kubectl-8441 namespace.\n" +Apr 5 20:11:38.394: INFO: stdout: "" +Apr 5 20:11:38.394: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Apr 5 20:11:38.527: INFO: stderr: "" +Apr 5 20:11:38.527: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 20:11:38.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-8441" for this suite. 04/05/23 20:11:38.535 +------------------------------ +• [SLOW TEST] [8.131 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Update Demo + test/e2e/kubectl/kubectl.go:324 + should create and stop a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:339 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:11:30.41 + Apr 5 20:11:30.410: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:11:30.414 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:30.432 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:30.44 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:326 + [It] should create and stop a replication controller [Conformance] + test/e2e/kubectl/kubectl.go:339 + STEP: creating a replication controller 04/05/23 20:11:30.446 + Apr 5 20:11:30.447: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 create -f -' + Apr 5 20:11:32.520: INFO: stderr: "" + Apr 5 20:11:32.520: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" + STEP: waiting for all containers in name=update-demo pods to come up. 04/05/23 20:11:32.52 + Apr 5 20:11:32.520: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 20:11:32.625: INFO: stderr: "" + Apr 5 20:11:32.625: INFO: stdout: "update-demo-nautilus-bvsb6 update-demo-nautilus-kmtcv " + Apr 5 20:11:32.625: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 20:11:32.716: INFO: stderr: "" + Apr 5 20:11:32.716: INFO: stdout: "" + Apr 5 20:11:32.716: INFO: update-demo-nautilus-bvsb6 is created but not running + Apr 5 20:11:37.716: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' + Apr 5 20:11:37.809: INFO: stderr: "" + Apr 5 20:11:37.809: INFO: stdout: "update-demo-nautilus-bvsb6 update-demo-nautilus-kmtcv " + Apr 5 20:11:37.809: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 20:11:37.900: INFO: stderr: "" + Apr 5 20:11:37.901: INFO: stdout: "true" + Apr 5 20:11:37.901: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-bvsb6 -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 20:11:37.990: INFO: stderr: "" + Apr 5 20:11:37.990: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 20:11:37.990: INFO: validating pod update-demo-nautilus-bvsb6 + Apr 5 20:11:37.998: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 20:11:37.998: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 20:11:37.998: INFO: update-demo-nautilus-bvsb6 is verified up and running + Apr 5 20:11:37.998: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-kmtcv -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' + Apr 5 20:11:38.099: INFO: stderr: "" + Apr 5 20:11:38.099: INFO: stdout: "true" + Apr 5 20:11:38.100: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods update-demo-nautilus-kmtcv -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' + Apr 5 20:11:38.189: INFO: stderr: "" + Apr 5 20:11:38.189: INFO: stdout: "registry.k8s.io/e2e-test-images/nautilus:1.7" + Apr 5 20:11:38.189: INFO: validating pod update-demo-nautilus-kmtcv + Apr 5 20:11:38.195: INFO: got data: { + "image": "nautilus.jpg" + } + + Apr 5 20:11:38.195: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . + Apr 5 20:11:38.195: INFO: update-demo-nautilus-kmtcv is verified up and running + STEP: using delete to clean up resources 04/05/23 20:11:38.195 + Apr 5 20:11:38.196: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 delete --grace-period=0 --force -f -' + Apr 5 20:11:38.286: 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" + Apr 5 20:11:38.289: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" + Apr 5 20:11:38.289: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get rc,svc -l name=update-demo --no-headers' + Apr 5 20:11:38.394: INFO: stderr: "No resources found in kubectl-8441 namespace.\n" + Apr 5 20:11:38.394: INFO: stdout: "" + Apr 5 20:11:38.394: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8441 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' + Apr 5 20:11:38.527: INFO: stderr: "" + Apr 5 20:11:38.527: INFO: stdout: "" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 20:11:38.527: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-8441" for this suite. 04/05/23 20:11:38.535 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should apply changes to a resourcequota status [Conformance] + test/e2e/apimachinery/resource_quota.go:1010 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:11:38.542 +Apr 5 20:11:38.543: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 20:11:38.545 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:38.56 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:38.563 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should apply changes to a resourcequota status [Conformance] + test/e2e/apimachinery/resource_quota.go:1010 +STEP: Creating resourceQuota "e2e-rq-status-pvphz" 04/05/23 20:11:38.569 +Apr 5 20:11:38.578: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard cpu limit of 500m +Apr 5 20:11:38.578: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard memory limit of 500Mi +STEP: Updating resourceQuota "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.578 +STEP: Confirm /status for "e2e-rq-status-pvphz" resourceQuota via watch 04/05/23 20:11:38.587 +Apr 5 20:11:38.588: INFO: observed resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList(nil) +Apr 5 20:11:38.588: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:500, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500m", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:524288000, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500Mi", Format:"BinarySI"}} +Apr 5 20:11:38.589: INFO: ResourceQuota "e2e-rq-status-pvphz" /status was updated +STEP: Patching hard spec values for cpu & memory 04/05/23 20:11:38.592 +Apr 5 20:11:38.596: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard cpu limit of 1 +Apr 5 20:11:38.596: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard memory limit of 1Gi +STEP: Patching "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.596 +STEP: Confirm /status for "e2e-rq-status-pvphz" resourceQuota via watch 04/05/23 20:11:38.605 +Apr 5 20:11:38.606: INFO: observed resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:500, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500m", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:524288000, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500Mi", Format:"BinarySI"}} +Apr 5 20:11:38.606: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:1, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"1", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:1073741824, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"1Gi", Format:"BinarySI"}} +Apr 5 20:11:38.606: INFO: ResourceQuota "e2e-rq-status-pvphz" /status was patched +STEP: Get "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.606 +Apr 5 20:11:38.610: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard cpu of 1 +Apr 5 20:11:38.610: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard memory of 1Gi +STEP: Repatching "e2e-rq-status-pvphz" /status before checking Spec is unchanged 04/05/23 20:11:38.613 +Apr 5 20:11:38.618: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard cpu of 2 +Apr 5 20:11:38.618: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard memory of 2Gi +Apr 5 20:11:38.619: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:2, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"2", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:2147483648, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"2Gi", Format:"BinarySI"}} +Apr 5 20:15:33.627: INFO: ResourceQuota "e2e-rq-status-pvphz" Spec was unchanged and /status reset +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 20:15:33.627: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-3115" for this suite. 04/05/23 20:15:33.634 +------------------------------ +• [SLOW TEST] [235.099 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should apply changes to a resourcequota status [Conformance] + test/e2e/apimachinery/resource_quota.go:1010 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:11:38.542 + Apr 5 20:11:38.543: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 20:11:38.545 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:11:38.56 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:11:38.563 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should apply changes to a resourcequota status [Conformance] + test/e2e/apimachinery/resource_quota.go:1010 + STEP: Creating resourceQuota "e2e-rq-status-pvphz" 04/05/23 20:11:38.569 + Apr 5 20:11:38.578: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard cpu limit of 500m + Apr 5 20:11:38.578: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard memory limit of 500Mi + STEP: Updating resourceQuota "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.578 + STEP: Confirm /status for "e2e-rq-status-pvphz" resourceQuota via watch 04/05/23 20:11:38.587 + Apr 5 20:11:38.588: INFO: observed resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList(nil) + Apr 5 20:11:38.588: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:500, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500m", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:524288000, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500Mi", Format:"BinarySI"}} + Apr 5 20:11:38.589: INFO: ResourceQuota "e2e-rq-status-pvphz" /status was updated + STEP: Patching hard spec values for cpu & memory 04/05/23 20:11:38.592 + Apr 5 20:11:38.596: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard cpu limit of 1 + Apr 5 20:11:38.596: INFO: Resource quota "e2e-rq-status-pvphz" reports spec: hard memory limit of 1Gi + STEP: Patching "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.596 + STEP: Confirm /status for "e2e-rq-status-pvphz" resourceQuota via watch 04/05/23 20:11:38.605 + Apr 5 20:11:38.606: INFO: observed resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:500, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500m", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:524288000, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"500Mi", Format:"BinarySI"}} + Apr 5 20:11:38.606: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:1, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"1", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:1073741824, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"1Gi", Format:"BinarySI"}} + Apr 5 20:11:38.606: INFO: ResourceQuota "e2e-rq-status-pvphz" /status was patched + STEP: Get "e2e-rq-status-pvphz" /status 04/05/23 20:11:38.606 + Apr 5 20:11:38.610: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard cpu of 1 + Apr 5 20:11:38.610: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard memory of 1Gi + STEP: Repatching "e2e-rq-status-pvphz" /status before checking Spec is unchanged 04/05/23 20:11:38.613 + Apr 5 20:11:38.618: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard cpu of 2 + Apr 5 20:11:38.618: INFO: Resourcequota "e2e-rq-status-pvphz" reports status: hard memory of 2Gi + Apr 5 20:11:38.619: INFO: Found resourceQuota "e2e-rq-status-pvphz" in namespace "resourcequota-3115" with hard status: v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:2, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"2", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:2147483648, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"2Gi", Format:"BinarySI"}} + Apr 5 20:15:33.627: INFO: ResourceQuota "e2e-rq-status-pvphz" Spec was unchanged and /status reset + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 20:15:33.627: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-3115" for this suite. 04/05/23 20:15:33.634 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:197 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:15:33.642 +Apr 5 20:15:33.642: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:15:33.643 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:15:33.665 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:15:33.668 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:197 +STEP: Creating a pod to test emptydir 0644 on node default medium 04/05/23 20:15:33.672 +Apr 5 20:15:33.681: INFO: Waiting up to 5m0s for pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c" in namespace "emptydir-2668" to be "Succeeded or Failed" +Apr 5 20:15:33.684: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.902671ms +Apr 5 20:15:35.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009277909s +Apr 5 20:15:37.688: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007496164s +Apr 5 20:15:39.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008752536s +Apr 5 20:15:41.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008933747s +STEP: Saw pod success 04/05/23 20:15:41.69 +Apr 5 20:15:41.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c" satisfied condition "Succeeded or Failed" +Apr 5 20:15:41.694: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c container test-container: +STEP: delete the pod 04/05/23 20:15:41.71 +Apr 5 20:15:41.722: INFO: Waiting for pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c to disappear +Apr 5 20:15:41.726: INFO: Pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:15:41.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-2668" for this suite. 04/05/23 20:15:41.734 +------------------------------ +• [SLOW TEST] [8.098 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:197 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:15:33.642 + Apr 5 20:15:33.642: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:15:33.643 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:15:33.665 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:15:33.668 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:197 + STEP: Creating a pod to test emptydir 0644 on node default medium 04/05/23 20:15:33.672 + Apr 5 20:15:33.681: INFO: Waiting up to 5m0s for pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c" in namespace "emptydir-2668" to be "Succeeded or Failed" + Apr 5 20:15:33.684: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.902671ms + Apr 5 20:15:35.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009277909s + Apr 5 20:15:37.688: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007496164s + Apr 5 20:15:39.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008752536s + Apr 5 20:15:41.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008933747s + STEP: Saw pod success 04/05/23 20:15:41.69 + Apr 5 20:15:41.690: INFO: Pod "pod-f738763f-8df0-42be-a7f6-50e19080cf9c" satisfied condition "Succeeded or Failed" + Apr 5 20:15:41.694: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c container test-container: + STEP: delete the pod 04/05/23 20:15:41.71 + Apr 5 20:15:41.722: INFO: Waiting for pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c to disappear + Apr 5 20:15:41.726: INFO: Pod pod-f738763f-8df0-42be-a7f6-50e19080cf9c no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:15:41.726: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-2668" for this suite. 04/05/23 20:15:41.734 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-network] HostPort + validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] + test/e2e/network/hostport.go:63 +[BeforeEach] [sig-network] HostPort + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:15:41.743 +Apr 5 20:15:41.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename hostport 04/05/23 20:15:41.745 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:15:41.758 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:15:41.761 +[BeforeEach] [sig-network] HostPort + test/e2e/framework/metrics/init/init.go:31 +[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/network/hostport.go:63 +STEP: Trying to create a pod(pod1) with hostport 54323 and hostIP 127.0.0.1 and expect scheduled 04/05/23 20:15:41.77 +Apr 5 20:15:41.780: INFO: Waiting up to 5m0s for pod "pod1" in namespace "hostport-8949" to be "running and ready" +Apr 5 20:15:41.784: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.127394ms +Apr 5 20:15:41.784: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:43.790: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009077938s +Apr 5 20:15:43.790: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:45.788: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007459648s +Apr 5 20:15:45.788: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:47.788: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.007641838s +Apr 5 20:15:47.788: INFO: The phase of Pod pod1 is Running (Ready = true) +Apr 5 20:15:47.788: INFO: Pod "pod1" satisfied condition "running and ready" +STEP: Trying to create another pod(pod2) with hostport 54323 but hostIP 195.17.2.92 on the node which pod1 resides and expect scheduled 04/05/23 20:15:47.788 +Apr 5 20:15:47.794: INFO: Waiting up to 5m0s for pod "pod2" in namespace "hostport-8949" to be "running and ready" +Apr 5 20:15:47.797: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.122477ms +Apr 5 20:15:47.797: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:49.802: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007647587s +Apr 5 20:15:49.802: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:51.802: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007767367s +Apr 5 20:15:51.802: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:53.803: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.00865904s +Apr 5 20:15:53.803: INFO: The phase of Pod pod2 is Running (Ready = true) +Apr 5 20:15:53.803: INFO: Pod "pod2" satisfied condition "running and ready" +STEP: Trying to create a third pod(pod3) with hostport 54323, hostIP 195.17.2.92 but use UDP protocol on the node which pod2 resides 04/05/23 20:15:53.803 +Apr 5 20:15:53.809: INFO: Waiting up to 5m0s for pod "pod3" in namespace "hostport-8949" to be "running and ready" +Apr 5 20:15:53.813: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 3.467643ms +Apr 5 20:15:53.813: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:55.819: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009400446s +Apr 5 20:15:55.819: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:57.817: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007746273s +Apr 5 20:15:57.817: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:15:59.818: INFO: Pod "pod3": Phase="Running", Reason="", readiness=true. Elapsed: 6.009076171s +Apr 5 20:15:59.818: INFO: The phase of Pod pod3 is Running (Ready = true) +Apr 5 20:15:59.818: INFO: Pod "pod3" satisfied condition "running and ready" +Apr 5 20:15:59.824: INFO: Waiting up to 5m0s for pod "e2e-host-exec" in namespace "hostport-8949" to be "running and ready" +Apr 5 20:15:59.831: INFO: Pod "e2e-host-exec": Phase="Pending", Reason="", readiness=false. Elapsed: 6.647884ms +Apr 5 20:15:59.831: INFO: The phase of Pod e2e-host-exec is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:01.837: INFO: Pod "e2e-host-exec": Phase="Running", Reason="", readiness=true. Elapsed: 2.013061895s +Apr 5 20:16:01.837: INFO: The phase of Pod e2e-host-exec is Running (Ready = true) +Apr 5 20:16:01.838: INFO: Pod "e2e-host-exec" satisfied condition "running and ready" +STEP: checking connectivity from pod e2e-host-exec to serverIP: 127.0.0.1, port: 54323 04/05/23 20:16:01.842 +Apr 5 20:16:01.842: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 --interface 195.17.2.92 http://127.0.0.1:54323/hostname] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:16:01.842: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:16:01.844: INFO: ExecWithOptions: Clientset creation +Apr 5 20:16:01.844: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+--interface+195.17.2.92+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: 195.17.2.92, port: 54323 04/05/23 20:16:01.935 +Apr 5 20:16:01.935: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 http://195.17.2.92:54323/hostname] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:16:01.935: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:16:01.936: INFO: ExecWithOptions: Clientset creation +Apr 5 20:16:01.936: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+http%3A%2F%2F195.17.2.92%3A54323%2Fhostname&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) +STEP: checking connectivity from pod e2e-host-exec to serverIP: 195.17.2.92, port: 54323 UDP 04/05/23 20:16:02.022 +Apr 5 20:16:02.022: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostname | nc -u -w 5 195.17.2.92 54323] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:16:02.022: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:16:02.023: INFO: ExecWithOptions: Clientset creation +Apr 5 20:16:02.023: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostname+%7C+nc+-u+-w+5+195.17.2.92+54323&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) +[AfterEach] [sig-network] HostPort + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:07.106: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] HostPort + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] HostPort + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] HostPort + tear down framework | framework.go:193 +STEP: Destroying namespace "hostport-8949" for this suite. 04/05/23 20:16:07.112 +------------------------------ +• [SLOW TEST] [25.377 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/network/hostport.go:63 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] HostPort + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:15:41.743 + Apr 5 20:15:41.744: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename hostport 04/05/23 20:15:41.745 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:15:41.758 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:15:41.761 + [BeforeEach] [sig-network] HostPort + test/e2e/framework/metrics/init/init.go:31 + [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/network/hostport.go:63 + STEP: Trying to create a pod(pod1) with hostport 54323 and hostIP 127.0.0.1 and expect scheduled 04/05/23 20:15:41.77 + Apr 5 20:15:41.780: INFO: Waiting up to 5m0s for pod "pod1" in namespace "hostport-8949" to be "running and ready" + Apr 5 20:15:41.784: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.127394ms + Apr 5 20:15:41.784: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:43.790: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009077938s + Apr 5 20:15:43.790: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:45.788: INFO: Pod "pod1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007459648s + Apr 5 20:15:45.788: INFO: The phase of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:47.788: INFO: Pod "pod1": Phase="Running", Reason="", readiness=true. Elapsed: 6.007641838s + Apr 5 20:15:47.788: INFO: The phase of Pod pod1 is Running (Ready = true) + Apr 5 20:15:47.788: INFO: Pod "pod1" satisfied condition "running and ready" + STEP: Trying to create another pod(pod2) with hostport 54323 but hostIP 195.17.2.92 on the node which pod1 resides and expect scheduled 04/05/23 20:15:47.788 + Apr 5 20:15:47.794: INFO: Waiting up to 5m0s for pod "pod2" in namespace "hostport-8949" to be "running and ready" + Apr 5 20:15:47.797: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 3.122477ms + Apr 5 20:15:47.797: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:49.802: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007647587s + Apr 5 20:15:49.802: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:51.802: INFO: Pod "pod2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007767367s + Apr 5 20:15:51.802: INFO: The phase of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:53.803: INFO: Pod "pod2": Phase="Running", Reason="", readiness=true. Elapsed: 6.00865904s + Apr 5 20:15:53.803: INFO: The phase of Pod pod2 is Running (Ready = true) + Apr 5 20:15:53.803: INFO: Pod "pod2" satisfied condition "running and ready" + STEP: Trying to create a third pod(pod3) with hostport 54323, hostIP 195.17.2.92 but use UDP protocol on the node which pod2 resides 04/05/23 20:15:53.803 + Apr 5 20:15:53.809: INFO: Waiting up to 5m0s for pod "pod3" in namespace "hostport-8949" to be "running and ready" + Apr 5 20:15:53.813: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 3.467643ms + Apr 5 20:15:53.813: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:55.819: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009400446s + Apr 5 20:15:55.819: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:57.817: INFO: Pod "pod3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007746273s + Apr 5 20:15:57.817: INFO: The phase of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:15:59.818: INFO: Pod "pod3": Phase="Running", Reason="", readiness=true. Elapsed: 6.009076171s + Apr 5 20:15:59.818: INFO: The phase of Pod pod3 is Running (Ready = true) + Apr 5 20:15:59.818: INFO: Pod "pod3" satisfied condition "running and ready" + Apr 5 20:15:59.824: INFO: Waiting up to 5m0s for pod "e2e-host-exec" in namespace "hostport-8949" to be "running and ready" + Apr 5 20:15:59.831: INFO: Pod "e2e-host-exec": Phase="Pending", Reason="", readiness=false. Elapsed: 6.647884ms + Apr 5 20:15:59.831: INFO: The phase of Pod e2e-host-exec is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:01.837: INFO: Pod "e2e-host-exec": Phase="Running", Reason="", readiness=true. Elapsed: 2.013061895s + Apr 5 20:16:01.837: INFO: The phase of Pod e2e-host-exec is Running (Ready = true) + Apr 5 20:16:01.838: INFO: Pod "e2e-host-exec" satisfied condition "running and ready" + STEP: checking connectivity from pod e2e-host-exec to serverIP: 127.0.0.1, port: 54323 04/05/23 20:16:01.842 + Apr 5 20:16:01.842: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 --interface 195.17.2.92 http://127.0.0.1:54323/hostname] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:16:01.842: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:16:01.844: INFO: ExecWithOptions: Clientset creation + Apr 5 20:16:01.844: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+--interface+195.17.2.92+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: 195.17.2.92, port: 54323 04/05/23 20:16:01.935 + Apr 5 20:16:01.935: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 http://195.17.2.92:54323/hostname] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:16:01.935: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:16:01.936: INFO: ExecWithOptions: Clientset creation + Apr 5 20:16:01.936: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+http%3A%2F%2F195.17.2.92%3A54323%2Fhostname&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) + STEP: checking connectivity from pod e2e-host-exec to serverIP: 195.17.2.92, port: 54323 UDP 04/05/23 20:16:02.022 + Apr 5 20:16:02.022: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostname | nc -u -w 5 195.17.2.92 54323] Namespace:hostport-8949 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:16:02.022: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:16:02.023: INFO: ExecWithOptions: Clientset creation + Apr 5 20:16:02.023: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/hostport-8949/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostname+%7C+nc+-u+-w+5+195.17.2.92+54323&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) + [AfterEach] [sig-network] HostPort + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:07.106: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] HostPort + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] HostPort + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] HostPort + tear down framework | framework.go:193 + STEP: Destroying namespace "hostport-8949" for this suite. 04/05/23 20:16:07.112 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:235 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:07.133 +Apr 5 20:16:07.133: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:16:07.134 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:07.148 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:07.151 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:235 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:16:07.155 +Apr 5 20:16:07.163: INFO: Waiting up to 5m0s for pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719" in namespace "downward-api-1625" to be "Succeeded or Failed" +Apr 5 20:16:07.166: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 3.36908ms +Apr 5 20:16:09.173: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010079765s +Apr 5 20:16:11.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009584935s +Apr 5 20:16:13.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00958727s +Apr 5 20:16:15.171: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.0085023s +STEP: Saw pod success 04/05/23 20:16:15.171 +Apr 5 20:16:15.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719" satisfied condition "Succeeded or Failed" +Apr 5 20:16:15.175: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 container client-container: +STEP: delete the pod 04/05/23 20:16:15.181 +Apr 5 20:16:15.194: INFO: Waiting for pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 to disappear +Apr 5 20:16:15.197: INFO: Pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:15.198: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-1625" for this suite. 04/05/23 20:16:15.204 +------------------------------ +• [SLOW TEST] [8.079 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:235 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:07.133 + Apr 5 20:16:07.133: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:16:07.134 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:07.148 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:07.151 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:235 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:16:07.155 + Apr 5 20:16:07.163: INFO: Waiting up to 5m0s for pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719" in namespace "downward-api-1625" to be "Succeeded or Failed" + Apr 5 20:16:07.166: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 3.36908ms + Apr 5 20:16:09.173: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010079765s + Apr 5 20:16:11.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009584935s + Apr 5 20:16:13.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00958727s + Apr 5 20:16:15.171: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.0085023s + STEP: Saw pod success 04/05/23 20:16:15.171 + Apr 5 20:16:15.172: INFO: Pod "downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719" satisfied condition "Succeeded or Failed" + Apr 5 20:16:15.175: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 container client-container: + STEP: delete the pod 04/05/23 20:16:15.181 + Apr 5 20:16:15.194: INFO: Waiting for pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 to disappear + Apr 5 20:16:15.197: INFO: Pod downwardapi-volume-b3f23b35-40d0-4d60-8e35-aa7087157719 no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:15.198: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-1625" for this suite. 04/05/23 20:16:15.204 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:45 +[BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:15.215 +Apr 5 20:16:15.215: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 20:16:15.216 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:15.228 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:15.231 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:45 +STEP: Creating configMap configmap-9806/configmap-test-604a7634-86e0-400c-a7aa-cfda5255b983 04/05/23 20:16:15.234 +STEP: Creating a pod to test consume configMaps 04/05/23 20:16:15.24 +Apr 5 20:16:15.248: INFO: Waiting up to 5m0s for pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60" in namespace "configmap-9806" to be "Succeeded or Failed" +Apr 5 20:16:15.251: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Pending", Reason="", readiness=false. Elapsed: 2.947363ms +Apr 5 20:16:17.257: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008413797s +Apr 5 20:16:19.256: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Running", Reason="", readiness=true. Elapsed: 4.007836221s +Apr 5 20:16:21.256: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Running", Reason="", readiness=false. Elapsed: 6.007121885s +Apr 5 20:16:23.257: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009019402s +STEP: Saw pod success 04/05/23 20:16:23.258 +Apr 5 20:16:23.258: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60" satisfied condition "Succeeded or Failed" +Apr 5 20:16:23.261: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 container env-test: +STEP: delete the pod 04/05/23 20:16:23.269 +Apr 5 20:16:23.282: INFO: Waiting for pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 to disappear +Apr 5 20:16:23.285: INFO: Pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 no longer exists +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:23.286: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-9806" for this suite. 04/05/23 20:16:23.292 +------------------------------ +• [SLOW TEST] [8.083 seconds] +[sig-node] ConfigMap +test/e2e/common/node/framework.go:23 + should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:45 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:15.215 + Apr 5 20:16:15.215: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 20:16:15.216 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:15.228 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:15.231 + [BeforeEach] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/common/node/configmap.go:45 + STEP: Creating configMap configmap-9806/configmap-test-604a7634-86e0-400c-a7aa-cfda5255b983 04/05/23 20:16:15.234 + STEP: Creating a pod to test consume configMaps 04/05/23 20:16:15.24 + Apr 5 20:16:15.248: INFO: Waiting up to 5m0s for pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60" in namespace "configmap-9806" to be "Succeeded or Failed" + Apr 5 20:16:15.251: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Pending", Reason="", readiness=false. Elapsed: 2.947363ms + Apr 5 20:16:17.257: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008413797s + Apr 5 20:16:19.256: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Running", Reason="", readiness=true. Elapsed: 4.007836221s + Apr 5 20:16:21.256: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Running", Reason="", readiness=false. Elapsed: 6.007121885s + Apr 5 20:16:23.257: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009019402s + STEP: Saw pod success 04/05/23 20:16:23.258 + Apr 5 20:16:23.258: INFO: Pod "pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60" satisfied condition "Succeeded or Failed" + Apr 5 20:16:23.261: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 container env-test: + STEP: delete the pod 04/05/23 20:16:23.269 + Apr 5 20:16:23.282: INFO: Waiting for pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 to disappear + Apr 5 20:16:23.285: INFO: Pod pod-configmaps-eedd457b-861e-4fe3-b6e1-d2a0513cca60 no longer exists + [AfterEach] [sig-node] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:23.286: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-9806" for this suite. 04/05/23 20:16:23.292 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/common/node/pods.go:896 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:23.304 +Apr 5 20:16:23.304: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 20:16:23.305 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:23.319 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:23.321 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/common/node/pods.go:896 +STEP: creating a Pod with a static label 04/05/23 20:16:23.334 +STEP: watching for Pod to be ready 04/05/23 20:16:23.342 +Apr 5 20:16:23.345: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [] +Apr 5 20:16:23.348: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] +Apr 5 20:16:23.361: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] +Apr 5 20:16:27.263: INFO: Found Pod pod-test in namespace pods-4790 in phase Running with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:27 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:27 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] +STEP: patching the Pod with a new Label and updated data 04/05/23 20:16:27.268 +STEP: getting the Pod and ensuring that it's patched 04/05/23 20:16:27.29 +STEP: replacing the Pod's status Ready condition to False 04/05/23 20:16:27.294 +STEP: check the Pod again to ensure its Ready conditions are False 04/05/23 20:16:27.311 +STEP: deleting the Pod via a Collection with a LabelSelector 04/05/23 20:16:27.312 +STEP: watching for the Pod to be deleted 04/05/23 20:16:27.321 +Apr 5 20:16:27.323: INFO: observed event type MODIFIED +Apr 5 20:16:29.262: INFO: observed event type MODIFIED +Apr 5 20:16:30.268: INFO: observed event type MODIFIED +Apr 5 20:16:30.277: INFO: observed event type MODIFIED +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:30.285: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-4790" for this suite. 04/05/23 20:16:30.29 +------------------------------ +• [SLOW TEST] [6.993 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/common/node/pods.go:896 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:23.304 + Apr 5 20:16:23.304: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 20:16:23.305 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:23.319 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:23.321 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/common/node/pods.go:896 + STEP: creating a Pod with a static label 04/05/23 20:16:23.334 + STEP: watching for Pod to be ready 04/05/23 20:16:23.342 + Apr 5 20:16:23.345: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [] + Apr 5 20:16:23.348: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] + Apr 5 20:16:23.361: INFO: observed Pod pod-test in namespace pods-4790 in phase Pending with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] + Apr 5 20:16:27.263: INFO: Found Pod pod-test in namespace pods-4790 in phase Running with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:27 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:27 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2023-04-05 20:16:23 +0000 UTC }] + STEP: patching the Pod with a new Label and updated data 04/05/23 20:16:27.268 + STEP: getting the Pod and ensuring that it's patched 04/05/23 20:16:27.29 + STEP: replacing the Pod's status Ready condition to False 04/05/23 20:16:27.294 + STEP: check the Pod again to ensure its Ready conditions are False 04/05/23 20:16:27.311 + STEP: deleting the Pod via a Collection with a LabelSelector 04/05/23 20:16:27.312 + STEP: watching for the Pod to be deleted 04/05/23 20:16:27.321 + Apr 5 20:16:27.323: INFO: observed event type MODIFIED + Apr 5 20:16:29.262: INFO: observed event type MODIFIED + Apr 5 20:16:30.268: INFO: observed event type MODIFIED + Apr 5 20:16:30.277: INFO: observed event type MODIFIED + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:30.285: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-4790" for this suite. 04/05/23 20:16:30.29 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:124 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:30.298 +Apr 5 20:16:30.298: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:16:30.3 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:30.315 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:30.318 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:124 +STEP: Creating projection with configMap that has name projected-configmap-test-upd-252d1eef-8f90-4edd-a4e6-1b901fa0f13e 04/05/23 20:16:30.327 +STEP: Creating the pod 04/05/23 20:16:30.332 +Apr 5 20:16:30.341: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef" in namespace "projected-8017" to be "running and ready" +Apr 5 20:16:30.347: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Pending", Reason="", readiness=false. Elapsed: 5.489083ms +Apr 5 20:16:30.347: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:32.350: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009325312s +Apr 5 20:16:32.351: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:34.353: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Running", Reason="", readiness=true. Elapsed: 4.012209454s +Apr 5 20:16:34.353: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Running (Ready = true) +Apr 5 20:16:34.353: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef" satisfied condition "running and ready" +STEP: Updating configmap projected-configmap-test-upd-252d1eef-8f90-4edd-a4e6-1b901fa0f13e 04/05/23 20:16:34.363 +STEP: waiting to observe update in volume 04/05/23 20:16:34.369 +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:36.386: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-8017" for this suite. 04/05/23 20:16:36.391 +------------------------------ +• [SLOW TEST] [6.102 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:124 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:30.298 + Apr 5 20:16:30.298: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:16:30.3 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:30.315 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:30.318 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:124 + STEP: Creating projection with configMap that has name projected-configmap-test-upd-252d1eef-8f90-4edd-a4e6-1b901fa0f13e 04/05/23 20:16:30.327 + STEP: Creating the pod 04/05/23 20:16:30.332 + Apr 5 20:16:30.341: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef" in namespace "projected-8017" to be "running and ready" + Apr 5 20:16:30.347: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Pending", Reason="", readiness=false. Elapsed: 5.489083ms + Apr 5 20:16:30.347: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:32.350: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009325312s + Apr 5 20:16:32.351: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:34.353: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef": Phase="Running", Reason="", readiness=true. Elapsed: 4.012209454s + Apr 5 20:16:34.353: INFO: The phase of Pod pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef is Running (Ready = true) + Apr 5 20:16:34.353: INFO: Pod "pod-projected-configmaps-f8eac0b3-44b2-431a-8e17-9c808e5dc1ef" satisfied condition "running and ready" + STEP: Updating configmap projected-configmap-test-upd-252d1eef-8f90-4edd-a4e6-1b901fa0f13e 04/05/23 20:16:34.363 + STEP: waiting to observe update in volume 04/05/23 20:16:34.369 + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:36.386: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-8017" for this suite. 04/05/23 20:16:36.391 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/apps/job.go:507 +[BeforeEach] [sig-apps] Job + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:36.403 +Apr 5 20:16:36.403: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename job 04/05/23 20:16:36.404 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:36.42 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:36.423 +[BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 +[It] should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/apps/job.go:507 +STEP: Creating a job 04/05/23 20:16:36.426 +STEP: Ensuring active pods == parallelism 04/05/23 20:16:36.432 +STEP: Orphaning one of the Job's Pods 04/05/23 20:16:42.437 +Apr 5 20:16:42.955: INFO: Successfully updated pod "adopt-release-2v2tx" +STEP: Checking that the Job readopts the Pod 04/05/23 20:16:42.955 +Apr 5 20:16:42.955: INFO: Waiting up to 15m0s for pod "adopt-release-2v2tx" in namespace "job-6171" to be "adopted" +Apr 5 20:16:42.967: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 11.527733ms +Apr 5 20:16:44.971: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 2.01617777s +Apr 5 20:16:44.971: INFO: Pod "adopt-release-2v2tx" satisfied condition "adopted" +STEP: Removing the labels from the Job's Pod 04/05/23 20:16:44.971 +Apr 5 20:16:45.484: INFO: Successfully updated pod "adopt-release-2v2tx" +STEP: Checking that the Job releases the Pod 04/05/23 20:16:45.484 +Apr 5 20:16:45.485: INFO: Waiting up to 15m0s for pod "adopt-release-2v2tx" in namespace "job-6171" to be "released" +Apr 5 20:16:45.489: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 3.967575ms +Apr 5 20:16:47.494: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 2.009308865s +Apr 5 20:16:47.494: INFO: Pod "adopt-release-2v2tx" satisfied condition "released" +[AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 +Apr 5 20:16:47.494: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 +STEP: Destroying namespace "job-6171" for this suite. 04/05/23 20:16:47.5 +------------------------------ +• [SLOW TEST] [11.105 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/apps/job.go:507 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Job + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:36.403 + Apr 5 20:16:36.403: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename job 04/05/23 20:16:36.404 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:36.42 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:36.423 + [BeforeEach] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:31 + [It] should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/apps/job.go:507 + STEP: Creating a job 04/05/23 20:16:36.426 + STEP: Ensuring active pods == parallelism 04/05/23 20:16:36.432 + STEP: Orphaning one of the Job's Pods 04/05/23 20:16:42.437 + Apr 5 20:16:42.955: INFO: Successfully updated pod "adopt-release-2v2tx" + STEP: Checking that the Job readopts the Pod 04/05/23 20:16:42.955 + Apr 5 20:16:42.955: INFO: Waiting up to 15m0s for pod "adopt-release-2v2tx" in namespace "job-6171" to be "adopted" + Apr 5 20:16:42.967: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 11.527733ms + Apr 5 20:16:44.971: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 2.01617777s + Apr 5 20:16:44.971: INFO: Pod "adopt-release-2v2tx" satisfied condition "adopted" + STEP: Removing the labels from the Job's Pod 04/05/23 20:16:44.971 + Apr 5 20:16:45.484: INFO: Successfully updated pod "adopt-release-2v2tx" + STEP: Checking that the Job releases the Pod 04/05/23 20:16:45.484 + Apr 5 20:16:45.485: INFO: Waiting up to 15m0s for pod "adopt-release-2v2tx" in namespace "job-6171" to be "released" + Apr 5 20:16:45.489: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 3.967575ms + Apr 5 20:16:47.494: INFO: Pod "adopt-release-2v2tx": Phase="Running", Reason="", readiness=true. Elapsed: 2.009308865s + Apr 5 20:16:47.494: INFO: Pod "adopt-release-2v2tx" satisfied condition "released" + [AfterEach] [sig-apps] Job + test/e2e/framework/node/init/init.go:32 + Apr 5 20:16:47.494: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Job + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Job + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Job + tear down framework | framework.go:193 + STEP: Destroying namespace "job-6171" for this suite. 04/05/23 20:16:47.5 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] Pods + should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:444 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:16:47.512 +Apr 5 20:16:47.512: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 20:16:47.513 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:47.526 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:47.529 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:444 +Apr 5 20:16:47.540: INFO: Waiting up to 5m0s for pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e" in namespace "pods-1132" to be "running and ready" +Apr 5 20:16:47.544: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 3.497636ms +Apr 5 20:16:47.544: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:49.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008825711s +Apr 5 20:16:49.549: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:51.550: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010270516s +Apr 5 20:16:51.551: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:16:53.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Running", Reason="", readiness=true. Elapsed: 6.008466862s +Apr 5 20:16:53.549: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Running (Ready = true) +Apr 5 20:16:53.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e" satisfied condition "running and ready" +Apr 5 20:16:53.585: INFO: Waiting up to 5m0s for pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8" in namespace "pods-1132" to be "Succeeded or Failed" +Apr 5 20:16:53.595: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 10.332345ms +Apr 5 20:16:55.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.016244693s +Apr 5 20:16:57.600: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015308692s +Apr 5 20:16:59.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 6.016404892s +Apr 5 20:17:01.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01571293s +STEP: Saw pod success 04/05/23 20:17:01.601 +Apr 5 20:17:01.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8" satisfied condition "Succeeded or Failed" +Apr 5 20:17:01.604: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 container env3cont: +STEP: delete the pod 04/05/23 20:17:01.616 +Apr 5 20:17:01.631: INFO: Waiting for pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 to disappear +Apr 5 20:17:01.634: INFO: Pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 no longer exists +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 20:17:01.635: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-1132" for this suite. 04/05/23 20:17:01.64 +------------------------------ +• [SLOW TEST] [14.136 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:444 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:16:47.512 + Apr 5 20:16:47.512: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 20:16:47.513 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:16:47.526 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:16:47.529 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:444 + Apr 5 20:16:47.540: INFO: Waiting up to 5m0s for pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e" in namespace "pods-1132" to be "running and ready" + Apr 5 20:16:47.544: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 3.497636ms + Apr 5 20:16:47.544: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:49.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008825711s + Apr 5 20:16:49.549: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:51.550: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010270516s + Apr 5 20:16:51.551: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:16:53.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e": Phase="Running", Reason="", readiness=true. Elapsed: 6.008466862s + Apr 5 20:16:53.549: INFO: The phase of Pod server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e is Running (Ready = true) + Apr 5 20:16:53.549: INFO: Pod "server-envvars-9ac4b69e-0c48-43b6-8150-83675be5627e" satisfied condition "running and ready" + Apr 5 20:16:53.585: INFO: Waiting up to 5m0s for pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8" in namespace "pods-1132" to be "Succeeded or Failed" + Apr 5 20:16:53.595: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 10.332345ms + Apr 5 20:16:55.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.016244693s + Apr 5 20:16:57.600: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015308692s + Apr 5 20:16:59.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Pending", Reason="", readiness=false. Elapsed: 6.016404892s + Apr 5 20:17:01.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.01571293s + STEP: Saw pod success 04/05/23 20:17:01.601 + Apr 5 20:17:01.601: INFO: Pod "client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8" satisfied condition "Succeeded or Failed" + Apr 5 20:17:01.604: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 container env3cont: + STEP: delete the pod 04/05/23 20:17:01.616 + Apr 5 20:17:01.631: INFO: Waiting for pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 to disappear + Apr 5 20:17:01.634: INFO: Pod client-envvars-f5b4661a-1c12-431a-864d-290b91cb8cf8 no longer exists + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 20:17:01.635: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-1132" for this suite. 04/05/23 20:17:01.64 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/apps/disruption.go:347 +[BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:17:01.658 +Apr 5 20:17:01.658: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename disruption 04/05/23 20:17:01.659 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:17:01.677 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:17:01.679 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 +[It] should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/apps/disruption.go:347 +STEP: Creating a pdb that targets all three pods in a test replica set 04/05/23 20:17:01.682 +STEP: Waiting for the pdb to be processed 04/05/23 20:17:01.687 +STEP: First trying to evict a pod which shouldn't be evictable 04/05/23 20:17:03.699 +STEP: Waiting for all pods to be running 04/05/23 20:17:03.699 +Apr 5 20:17:03.703: INFO: pods: 0 < 3 +Apr 5 20:17:05.708: INFO: running pods: 0 < 3 +Apr 5 20:17:07.708: INFO: running pods: 0 < 3 +STEP: locating a running pod 04/05/23 20:17:09.709 +STEP: Updating the pdb to allow a pod to be evicted 04/05/23 20:17:09.72 +STEP: Waiting for the pdb to be processed 04/05/23 20:17:09.728 +STEP: Trying to evict the same pod we tried earlier which should now be evictable 04/05/23 20:17:11.738 +STEP: Waiting for all pods to be running 04/05/23 20:17:11.738 +STEP: Waiting for the pdb to observed all healthy pods 04/05/23 20:17:11.742 +STEP: Patching the pdb to disallow a pod to be evicted 04/05/23 20:17:11.772 +STEP: Waiting for the pdb to be processed 04/05/23 20:17:11.804 +STEP: Waiting for all pods to be running 04/05/23 20:17:11.807 +Apr 5 20:17:11.811: INFO: running pods: 2 < 3 +Apr 5 20:17:13.815: INFO: running pods: 2 < 3 +Apr 5 20:17:15.817: INFO: running pods: 2 < 3 +STEP: locating a running pod 04/05/23 20:17:17.818 +STEP: Deleting the pdb to allow a pod to be evicted 04/05/23 20:17:17.83 +STEP: Waiting for the pdb to be deleted 04/05/23 20:17:17.836 +STEP: Trying to evict the same pod we tried earlier which should now be evictable 04/05/23 20:17:17.839 +STEP: Waiting for all pods to be running 04/05/23 20:17:17.839 +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 +Apr 5 20:17:17.860: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 +STEP: Destroying namespace "disruption-5210" for this suite. 04/05/23 20:17:17.877 +------------------------------ +• [SLOW TEST] [16.232 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/apps/disruption.go:347 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] DisruptionController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:17:01.658 + Apr 5 20:17:01.658: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename disruption 04/05/23 20:17:01.659 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:17:01.677 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:17:01.679 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:72 + [It] should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/apps/disruption.go:347 + STEP: Creating a pdb that targets all three pods in a test replica set 04/05/23 20:17:01.682 + STEP: Waiting for the pdb to be processed 04/05/23 20:17:01.687 + STEP: First trying to evict a pod which shouldn't be evictable 04/05/23 20:17:03.699 + STEP: Waiting for all pods to be running 04/05/23 20:17:03.699 + Apr 5 20:17:03.703: INFO: pods: 0 < 3 + Apr 5 20:17:05.708: INFO: running pods: 0 < 3 + Apr 5 20:17:07.708: INFO: running pods: 0 < 3 + STEP: locating a running pod 04/05/23 20:17:09.709 + STEP: Updating the pdb to allow a pod to be evicted 04/05/23 20:17:09.72 + STEP: Waiting for the pdb to be processed 04/05/23 20:17:09.728 + STEP: Trying to evict the same pod we tried earlier which should now be evictable 04/05/23 20:17:11.738 + STEP: Waiting for all pods to be running 04/05/23 20:17:11.738 + STEP: Waiting for the pdb to observed all healthy pods 04/05/23 20:17:11.742 + STEP: Patching the pdb to disallow a pod to be evicted 04/05/23 20:17:11.772 + STEP: Waiting for the pdb to be processed 04/05/23 20:17:11.804 + STEP: Waiting for all pods to be running 04/05/23 20:17:11.807 + Apr 5 20:17:11.811: INFO: running pods: 2 < 3 + Apr 5 20:17:13.815: INFO: running pods: 2 < 3 + Apr 5 20:17:15.817: INFO: running pods: 2 < 3 + STEP: locating a running pod 04/05/23 20:17:17.818 + STEP: Deleting the pdb to allow a pod to be evicted 04/05/23 20:17:17.83 + STEP: Waiting for the pdb to be deleted 04/05/23 20:17:17.836 + STEP: Trying to evict the same pod we tried earlier which should now be evictable 04/05/23 20:17:17.839 + STEP: Waiting for all pods to be running 04/05/23 20:17:17.839 + [AfterEach] [sig-apps] DisruptionController + test/e2e/framework/node/init/init.go:32 + Apr 5 20:17:17.860: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] DisruptionController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] DisruptionController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] DisruptionController + tear down framework | framework.go:193 + STEP: Destroying namespace "disruption-5210" for this suite. 04/05/23 20:17:17.877 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] + validates lower priority pod preemption by critical pod [Conformance] + test/e2e/scheduling/preemption.go:224 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:17:17.893 +Apr 5 20:17:17.893: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-preemption 04/05/23 20:17:17.895 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:17:17.914 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:17:17.917 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 +Apr 5 20:17:17.934: INFO: Waiting up to 1m0s for all nodes to be ready +Apr 5 20:18:17.997: INFO: Waiting for terminating namespaces to be deleted... +[It] validates lower priority pod preemption by critical pod [Conformance] + test/e2e/scheduling/preemption.go:224 +STEP: Create pods that use 4/5 of node resources. 04/05/23 20:18:18.001 +Apr 5 20:18:18.028: INFO: Created pod: pod0-0-sched-preemption-low-priority +Apr 5 20:18:18.036: INFO: Created pod: pod0-1-sched-preemption-medium-priority +Apr 5 20:18:18.062: INFO: Created pod: pod1-0-sched-preemption-medium-priority +Apr 5 20:18:18.071: INFO: Created pod: pod1-1-sched-preemption-medium-priority +Apr 5 20:18:18.103: INFO: Created pod: pod2-0-sched-preemption-medium-priority +Apr 5 20:18:18.111: INFO: Created pod: pod2-1-sched-preemption-medium-priority +STEP: Wait for pods to be scheduled. 04/05/23 20:18:18.111 +Apr 5 20:18:18.111: INFO: Waiting up to 5m0s for pod "pod0-0-sched-preemption-low-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:18.116: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.852405ms +Apr 5 20:18:21.134: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 3.022216921s +Apr 5 20:18:22.121: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009708657s +Apr 5 20:18:24.121: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Running", Reason="", readiness=true. Elapsed: 6.009368341s +Apr 5 20:18:24.121: INFO: Pod "pod0-0-sched-preemption-low-priority" satisfied condition "running" +Apr 5 20:18:24.121: INFO: Waiting up to 5m0s for pod "pod0-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:24.125: INFO: Pod "pod0-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.861709ms +Apr 5 20:18:24.125: INFO: Pod "pod0-1-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 20:18:24.125: INFO: Waiting up to 5m0s for pod "pod1-0-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:24.128: INFO: Pod "pod1-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.966228ms +Apr 5 20:18:24.128: INFO: Pod "pod1-0-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 20:18:24.128: INFO: Waiting up to 5m0s for pod "pod1-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:24.131: INFO: Pod "pod1-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.049663ms +Apr 5 20:18:24.131: INFO: Pod "pod1-1-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 20:18:24.131: INFO: Waiting up to 5m0s for pod "pod2-0-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:24.134: INFO: Pod "pod2-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.438222ms +Apr 5 20:18:24.134: INFO: Pod "pod2-0-sched-preemption-medium-priority" satisfied condition "running" +Apr 5 20:18:24.134: INFO: Waiting up to 5m0s for pod "pod2-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" +Apr 5 20:18:24.137: INFO: Pod "pod2-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.919703ms +Apr 5 20:18:24.137: INFO: Pod "pod2-1-sched-preemption-medium-priority" satisfied condition "running" +STEP: Run a critical pod that use same resources as that of a lower priority pod 04/05/23 20:18:24.137 +Apr 5 20:18:24.149: INFO: Waiting up to 2m0s for pod "critical-pod" in namespace "kube-system" to be "running" +Apr 5 20:18:24.160: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 10.869805ms +Apr 5 20:18:26.172: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.022527553s +Apr 5 20:18:28.166: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016433038s +Apr 5 20:18:30.166: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.017018359s +Apr 5 20:18:32.166: INFO: Pod "critical-pod": Phase="Running", Reason="", readiness=true. Elapsed: 8.01620716s +Apr 5 20:18:32.166: INFO: Pod "critical-pod" satisfied condition "running" +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:18:32.215: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-preemption-110" for this suite. 04/05/23 20:18:32.281 +------------------------------ +• [SLOW TEST] [74.395 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + validates lower priority pod preemption by critical pod [Conformance] + test/e2e/scheduling/preemption.go:224 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:17:17.893 + Apr 5 20:17:17.893: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-preemption 04/05/23 20:17:17.895 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:17:17.914 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:17:17.917 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:97 + Apr 5 20:17:17.934: INFO: Waiting up to 1m0s for all nodes to be ready + Apr 5 20:18:17.997: INFO: Waiting for terminating namespaces to be deleted... + [It] validates lower priority pod preemption by critical pod [Conformance] + test/e2e/scheduling/preemption.go:224 + STEP: Create pods that use 4/5 of node resources. 04/05/23 20:18:18.001 + Apr 5 20:18:18.028: INFO: Created pod: pod0-0-sched-preemption-low-priority + Apr 5 20:18:18.036: INFO: Created pod: pod0-1-sched-preemption-medium-priority + Apr 5 20:18:18.062: INFO: Created pod: pod1-0-sched-preemption-medium-priority + Apr 5 20:18:18.071: INFO: Created pod: pod1-1-sched-preemption-medium-priority + Apr 5 20:18:18.103: INFO: Created pod: pod2-0-sched-preemption-medium-priority + Apr 5 20:18:18.111: INFO: Created pod: pod2-1-sched-preemption-medium-priority + STEP: Wait for pods to be scheduled. 04/05/23 20:18:18.111 + Apr 5 20:18:18.111: INFO: Waiting up to 5m0s for pod "pod0-0-sched-preemption-low-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:18.116: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.852405ms + Apr 5 20:18:21.134: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 3.022216921s + Apr 5 20:18:22.121: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009708657s + Apr 5 20:18:24.121: INFO: Pod "pod0-0-sched-preemption-low-priority": Phase="Running", Reason="", readiness=true. Elapsed: 6.009368341s + Apr 5 20:18:24.121: INFO: Pod "pod0-0-sched-preemption-low-priority" satisfied condition "running" + Apr 5 20:18:24.121: INFO: Waiting up to 5m0s for pod "pod0-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:24.125: INFO: Pod "pod0-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.861709ms + Apr 5 20:18:24.125: INFO: Pod "pod0-1-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 20:18:24.125: INFO: Waiting up to 5m0s for pod "pod1-0-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:24.128: INFO: Pod "pod1-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.966228ms + Apr 5 20:18:24.128: INFO: Pod "pod1-0-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 20:18:24.128: INFO: Waiting up to 5m0s for pod "pod1-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:24.131: INFO: Pod "pod1-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.049663ms + Apr 5 20:18:24.131: INFO: Pod "pod1-1-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 20:18:24.131: INFO: Waiting up to 5m0s for pod "pod2-0-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:24.134: INFO: Pod "pod2-0-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 3.438222ms + Apr 5 20:18:24.134: INFO: Pod "pod2-0-sched-preemption-medium-priority" satisfied condition "running" + Apr 5 20:18:24.134: INFO: Waiting up to 5m0s for pod "pod2-1-sched-preemption-medium-priority" in namespace "sched-preemption-110" to be "running" + Apr 5 20:18:24.137: INFO: Pod "pod2-1-sched-preemption-medium-priority": Phase="Running", Reason="", readiness=true. Elapsed: 2.919703ms + Apr 5 20:18:24.137: INFO: Pod "pod2-1-sched-preemption-medium-priority" satisfied condition "running" + STEP: Run a critical pod that use same resources as that of a lower priority pod 04/05/23 20:18:24.137 + Apr 5 20:18:24.149: INFO: Waiting up to 2m0s for pod "critical-pod" in namespace "kube-system" to be "running" + Apr 5 20:18:24.160: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 10.869805ms + Apr 5 20:18:26.172: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.022527553s + Apr 5 20:18:28.166: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016433038s + Apr 5 20:18:30.166: INFO: Pod "critical-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.017018359s + Apr 5 20:18:32.166: INFO: Pod "critical-pod": Phase="Running", Reason="", readiness=true. Elapsed: 8.01620716s + Apr 5 20:18:32.166: INFO: Pod "critical-pod" satisfied condition "running" + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:18:32.215: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:84 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPreemption [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-preemption-110" for this suite. 04/05/23 20:18:32.281 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-node] RuntimeClass + should support RuntimeClasses API operations [Conformance] + test/e2e/common/node/runtimeclass.go:189 +[BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:18:32.293 +Apr 5 20:18:32.293: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:18:32.294 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:32.309 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:32.313 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 +[It] should support RuntimeClasses API operations [Conformance] + test/e2e/common/node/runtimeclass.go:189 +STEP: getting /apis 04/05/23 20:18:32.317 +STEP: getting /apis/node.k8s.io 04/05/23 20:18:32.321 +STEP: getting /apis/node.k8s.io/v1 04/05/23 20:18:32.323 +STEP: creating 04/05/23 20:18:32.324 +STEP: watching 04/05/23 20:18:32.34 +Apr 5 20:18:32.340: INFO: starting watch +STEP: getting 04/05/23 20:18:32.346 +STEP: listing 04/05/23 20:18:32.35 +STEP: patching 04/05/23 20:18:32.359 +STEP: updating 04/05/23 20:18:32.364 +Apr 5 20:18:32.368: INFO: waiting for watch events with expected annotations +STEP: deleting 04/05/23 20:18:32.368 +STEP: deleting a collection 04/05/23 20:18:32.38 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 +Apr 5 20:18:32.395: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 +STEP: Destroying namespace "runtimeclass-5225" for this suite. 04/05/23 20:18:32.401 +------------------------------ +• [0.115 seconds] +[sig-node] RuntimeClass +test/e2e/common/node/framework.go:23 + should support RuntimeClasses API operations [Conformance] + test/e2e/common/node/runtimeclass.go:189 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:18:32.293 + Apr 5 20:18:32.293: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:18:32.294 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:32.309 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:32.313 + [BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 + [It] should support RuntimeClasses API operations [Conformance] + test/e2e/common/node/runtimeclass.go:189 + STEP: getting /apis 04/05/23 20:18:32.317 + STEP: getting /apis/node.k8s.io 04/05/23 20:18:32.321 + STEP: getting /apis/node.k8s.io/v1 04/05/23 20:18:32.323 + STEP: creating 04/05/23 20:18:32.324 + STEP: watching 04/05/23 20:18:32.34 + Apr 5 20:18:32.340: INFO: starting watch + STEP: getting 04/05/23 20:18:32.346 + STEP: listing 04/05/23 20:18:32.35 + STEP: patching 04/05/23 20:18:32.359 + STEP: updating 04/05/23 20:18:32.364 + Apr 5 20:18:32.368: INFO: waiting for watch events with expected annotations + STEP: deleting 04/05/23 20:18:32.368 + STEP: deleting a collection 04/05/23 20:18:32.38 + [AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 + Apr 5 20:18:32.395: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 + STEP: Destroying namespace "runtimeclass-5225" for this suite. 04/05/23 20:18:32.401 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/network/service.go:1477 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:18:32.412 +Apr 5 20:18:32.412: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:18:32.413 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:32.428 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:32.431 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/network/service.go:1477 +STEP: creating a service externalname-service with the type=ExternalName in namespace services-6605 04/05/23 20:18:32.434 +STEP: changing the ExternalName service to type=NodePort 04/05/23 20:18:32.439 +STEP: creating replication controller externalname-service in namespace services-6605 04/05/23 20:18:32.47 +I0405 20:18:32.479258 19 runners.go:193] Created replication controller with name: externalname-service, namespace: services-6605, replica count: 2 +I0405 20:18:35.530091 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:18:38.530263 19 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 +Apr 5 20:18:38.530: INFO: Creating new exec pod +Apr 5 20:18:38.535: INFO: Waiting up to 5m0s for pod "execpodkhhjn" in namespace "services-6605" to be "running" +Apr 5 20:18:38.539: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 3.469714ms +Apr 5 20:18:40.543: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008174079s +Apr 5 20:18:42.545: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00960387s +Apr 5 20:18:44.544: INFO: Pod "execpodkhhjn": Phase="Running", Reason="", readiness=true. Elapsed: 6.009016179s +Apr 5 20:18:44.544: INFO: Pod "execpodkhhjn" satisfied condition "running" +Apr 5 20:18:45.551: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 externalname-service 80' +Apr 5 20:18:45.730: INFO: stderr: "+ nc -v -z -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" +Apr 5 20:18:45.731: INFO: stdout: "" +Apr 5 20:18:45.731: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 10.142.83.18 80' +Apr 5 20:18:45.894: INFO: stderr: "+ nc -v -z -w 2 10.142.83.18 80\nConnection to 10.142.83.18 80 port [tcp/http] succeeded!\n" +Apr 5 20:18:45.894: INFO: stdout: "" +Apr 5 20:18:45.894: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 32294' +Apr 5 20:18:46.084: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 32294\nConnection to 195.17.150.192 32294 port [tcp/*] succeeded!\n" +Apr 5 20:18:46.084: INFO: stdout: "" +Apr 5 20:18:46.084: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 32294' +Apr 5 20:18:46.251: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 32294\nConnection to 195.17.2.92 32294 port [tcp/*] succeeded!\n" +Apr 5 20:18:46.251: INFO: stdout: "" +Apr 5 20:18:46.251: INFO: Cleaning up the ExternalName to NodePort test service +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:18:46.304: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-6605" for this suite. 04/05/23 20:18:46.312 +------------------------------ +• [SLOW TEST] [13.910 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/network/service.go:1477 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:18:32.412 + Apr 5 20:18:32.412: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:18:32.413 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:32.428 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:32.431 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/network/service.go:1477 + STEP: creating a service externalname-service with the type=ExternalName in namespace services-6605 04/05/23 20:18:32.434 + STEP: changing the ExternalName service to type=NodePort 04/05/23 20:18:32.439 + STEP: creating replication controller externalname-service in namespace services-6605 04/05/23 20:18:32.47 + I0405 20:18:32.479258 19 runners.go:193] Created replication controller with name: externalname-service, namespace: services-6605, replica count: 2 + I0405 20:18:35.530091 19 runners.go:193] externalname-service Pods: 2 out of 2 created, 0 running, 2 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:18:38.530263 19 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 + Apr 5 20:18:38.530: INFO: Creating new exec pod + Apr 5 20:18:38.535: INFO: Waiting up to 5m0s for pod "execpodkhhjn" in namespace "services-6605" to be "running" + Apr 5 20:18:38.539: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 3.469714ms + Apr 5 20:18:40.543: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008174079s + Apr 5 20:18:42.545: INFO: Pod "execpodkhhjn": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00960387s + Apr 5 20:18:44.544: INFO: Pod "execpodkhhjn": Phase="Running", Reason="", readiness=true. Elapsed: 6.009016179s + Apr 5 20:18:44.544: INFO: Pod "execpodkhhjn" satisfied condition "running" + Apr 5 20:18:45.551: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 externalname-service 80' + Apr 5 20:18:45.730: INFO: stderr: "+ nc -v -z -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" + Apr 5 20:18:45.731: INFO: stdout: "" + Apr 5 20:18:45.731: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 10.142.83.18 80' + Apr 5 20:18:45.894: INFO: stderr: "+ nc -v -z -w 2 10.142.83.18 80\nConnection to 10.142.83.18 80 port [tcp/http] succeeded!\n" + Apr 5 20:18:45.894: INFO: stdout: "" + Apr 5 20:18:45.894: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 32294' + Apr 5 20:18:46.084: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 32294\nConnection to 195.17.150.192 32294 port [tcp/*] succeeded!\n" + Apr 5 20:18:46.084: INFO: stdout: "" + Apr 5 20:18:46.084: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6605 exec execpodkhhjn -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 32294' + Apr 5 20:18:46.251: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 32294\nConnection to 195.17.2.92 32294 port [tcp/*] succeeded!\n" + Apr 5 20:18:46.251: INFO: stdout: "" + Apr 5 20:18:46.251: INFO: Cleaning up the ExternalName to NodePort test service + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:18:46.304: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-6605" for this suite. 04/05/23 20:18:46.312 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should have a working scale subresource [Conformance] + test/e2e/apps/statefulset.go:848 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:18:46.328 +Apr 5 20:18:46.328: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 20:18:46.33 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:46.345 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:46.35 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-1433 04/05/23 20:18:46.353 +[It] should have a working scale subresource [Conformance] + test/e2e/apps/statefulset.go:848 +STEP: Creating statefulset ss in namespace statefulset-1433 04/05/23 20:18:46.359 +Apr 5 20:18:46.391: INFO: Found 0 stateful pods, waiting for 1 +Apr 5 20:18:56.397: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: getting scale subresource 04/05/23 20:18:56.403 +STEP: updating a scale subresource 04/05/23 20:18:56.407 +STEP: verifying the statefulset Spec.Replicas was modified 04/05/23 20:18:56.412 +STEP: Patch a scale subresource 04/05/23 20:18:56.415 +STEP: verifying the statefulset Spec.Replicas was modified 04/05/23 20:18:56.424 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 20:18:56.431: INFO: Deleting all statefulset in ns statefulset-1433 +Apr 5 20:18:56.434: INFO: Scaling statefulset ss to 0 +Apr 5 20:19:06.458: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:19:06.462: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:06.474: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-1433" for this suite. 04/05/23 20:19:06.479 +------------------------------ +• [SLOW TEST] [20.158 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + should have a working scale subresource [Conformance] + test/e2e/apps/statefulset.go:848 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:18:46.328 + Apr 5 20:18:46.328: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 20:18:46.33 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:18:46.345 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:18:46.35 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-1433 04/05/23 20:18:46.353 + [It] should have a working scale subresource [Conformance] + test/e2e/apps/statefulset.go:848 + STEP: Creating statefulset ss in namespace statefulset-1433 04/05/23 20:18:46.359 + Apr 5 20:18:46.391: INFO: Found 0 stateful pods, waiting for 1 + Apr 5 20:18:56.397: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true + STEP: getting scale subresource 04/05/23 20:18:56.403 + STEP: updating a scale subresource 04/05/23 20:18:56.407 + STEP: verifying the statefulset Spec.Replicas was modified 04/05/23 20:18:56.412 + STEP: Patch a scale subresource 04/05/23 20:18:56.415 + STEP: verifying the statefulset Spec.Replicas was modified 04/05/23 20:18:56.424 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 20:18:56.431: INFO: Deleting all statefulset in ns statefulset-1433 + Apr 5 20:18:56.434: INFO: Scaling statefulset ss to 0 + Apr 5 20:19:06.458: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:19:06.462: INFO: Deleting statefulset ss + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:06.474: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-1433" for this suite. 04/05/23 20:19:06.479 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-node] Pods + should get a host IP [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:204 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:06.489 +Apr 5 20:19:06.489: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 20:19:06.49 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:06.507 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:06.51 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should get a host IP [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:204 +STEP: creating pod 04/05/23 20:19:06.513 +Apr 5 20:19:06.521: INFO: Waiting up to 5m0s for pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a" in namespace "pods-524" to be "running and ready" +Apr 5 20:19:06.524: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.673194ms +Apr 5 20:19:06.524: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:19:08.529: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007632243s +Apr 5 20:19:08.529: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:19:10.529: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00811625s +Apr 5 20:19:10.529: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:19:12.528: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Running", Reason="", readiness=true. Elapsed: 6.006926881s +Apr 5 20:19:12.528: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Running (Ready = true) +Apr 5 20:19:12.528: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a" satisfied condition "running and ready" +Apr 5 20:19:12.534: INFO: Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a has hostIP: 195.17.150.192 +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:12.534: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-524" for this suite. 04/05/23 20:19:12.541 +------------------------------ +• [SLOW TEST] [6.060 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should get a host IP [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:204 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:06.489 + Apr 5 20:19:06.489: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 20:19:06.49 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:06.507 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:06.51 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should get a host IP [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:204 + STEP: creating pod 04/05/23 20:19:06.513 + Apr 5 20:19:06.521: INFO: Waiting up to 5m0s for pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a" in namespace "pods-524" to be "running and ready" + Apr 5 20:19:06.524: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.673194ms + Apr 5 20:19:06.524: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:19:08.529: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007632243s + Apr 5 20:19:08.529: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:19:10.529: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00811625s + Apr 5 20:19:10.529: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:19:12.528: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a": Phase="Running", Reason="", readiness=true. Elapsed: 6.006926881s + Apr 5 20:19:12.528: INFO: The phase of Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a is Running (Ready = true) + Apr 5 20:19:12.528: INFO: Pod "pod-hostip-e1da522d-1128-4405-82e6-762333240f4a" satisfied condition "running and ready" + Apr 5 20:19:12.534: INFO: Pod pod-hostip-e1da522d-1128-4405-82e6-762333240f4a has hostIP: 195.17.150.192 + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:12.534: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-524" for this suite. 04/05/23 20:19:12.541 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/apimachinery/resource_quota.go:160 +[BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:12.55 +Apr 5 20:19:12.550: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 20:19:12.551 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:12.565 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:12.568 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/apimachinery/resource_quota.go:160 +STEP: Discovering how many secrets are in namespace by default 04/05/23 20:19:12.57 +STEP: Counting existing ResourceQuota 04/05/23 20:19:17.578 +STEP: Creating a ResourceQuota 04/05/23 20:19:22.583 +STEP: Ensuring resource quota status is calculated 04/05/23 20:19:22.589 +STEP: Creating a Secret 04/05/23 20:19:24.595 +STEP: Ensuring resource quota status captures secret creation 04/05/23 20:19:24.607 +STEP: Deleting a secret 04/05/23 20:19:26.613 +STEP: Ensuring resource quota status released usage 04/05/23 20:19:26.621 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:28.626: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-9984" for this suite. 04/05/23 20:19:28.632 +------------------------------ +• [SLOW TEST] [16.089 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/apimachinery/resource_quota.go:160 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:12.55 + Apr 5 20:19:12.550: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 20:19:12.551 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:12.565 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:12.568 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/apimachinery/resource_quota.go:160 + STEP: Discovering how many secrets are in namespace by default 04/05/23 20:19:12.57 + STEP: Counting existing ResourceQuota 04/05/23 20:19:17.578 + STEP: Creating a ResourceQuota 04/05/23 20:19:22.583 + STEP: Ensuring resource quota status is calculated 04/05/23 20:19:22.589 + STEP: Creating a Secret 04/05/23 20:19:24.595 + STEP: Ensuring resource quota status captures secret creation 04/05/23 20:19:24.607 + STEP: Deleting a secret 04/05/23 20:19:26.613 + STEP: Ensuring resource quota status released usage 04/05/23 20:19:26.621 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:28.626: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-9984" for this suite. 04/05/23 20:19:28.632 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] PodTemplates + should replace a pod template [Conformance] + test/e2e/common/node/podtemplates.go:176 +[BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:28.643 +Apr 5 20:19:28.643: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename podtemplate 04/05/23 20:19:28.644 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:28.659 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:28.662 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 +[It] should replace a pod template [Conformance] + test/e2e/common/node/podtemplates.go:176 +STEP: Create a pod template 04/05/23 20:19:28.665 +STEP: Replace a pod template 04/05/23 20:19:28.669 +Apr 5 20:19:28.678: INFO: Found updated podtemplate annotation: "true" + +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:28.679: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 +STEP: Destroying namespace "podtemplate-1333" for this suite. 04/05/23 20:19:28.691 +------------------------------ +• [0.057 seconds] +[sig-node] PodTemplates +test/e2e/common/node/framework.go:23 + should replace a pod template [Conformance] + test/e2e/common/node/podtemplates.go:176 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] PodTemplates + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:28.643 + Apr 5 20:19:28.643: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename podtemplate 04/05/23 20:19:28.644 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:28.659 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:28.662 + [BeforeEach] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:31 + [It] should replace a pod template [Conformance] + test/e2e/common/node/podtemplates.go:176 + STEP: Create a pod template 04/05/23 20:19:28.665 + STEP: Replace a pod template 04/05/23 20:19:28.669 + Apr 5 20:19:28.678: INFO: Found updated podtemplate annotation: "true" + + [AfterEach] [sig-node] PodTemplates + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:28.679: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] PodTemplates + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] PodTemplates + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] PodTemplates + tear down framework | framework.go:193 + STEP: Destroying namespace "podtemplate-1333" for this suite. 04/05/23 20:19:28.691 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should verify changes to a daemon set status [Conformance] + test/e2e/apps/daemon_set.go:862 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:28.704 +Apr 5 20:19:28.705: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 20:19:28.706 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:28.719 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:28.722 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should verify changes to a daemon set status [Conformance] + test/e2e/apps/daemon_set.go:862 +STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:19:28.753 +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:19:28.764 +Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:28.777: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:28.777: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:29.788: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:29.788: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:19:30.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:30.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:30.789: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:30.793: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:30.793: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:19:31.783: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:31.784: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:31.784: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:31.788: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:31.788: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:32.787: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:32.787: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:19:33.790: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:19:33.790: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Getting /status 04/05/23 20:19:33.793 +Apr 5 20:19:33.797: INFO: Daemon Set daemon-set has Conditions: [] +STEP: updating the DaemonSet Status 04/05/23 20:19:33.797 +Apr 5 20:19:33.807: 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 04/05/23 20:19:33.807 +Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: ADDED +Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.810: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.810: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.810: INFO: Found daemon set daemon-set in namespace daemonsets-1481 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}] +Apr 5 20:19:33.810: INFO: Daemon set daemon-set has an updated status +STEP: patching the DaemonSet Status 04/05/23 20:19:33.81 +STEP: watching for the daemon set status to be patched 04/05/23 20:19:33.82 +Apr 5 20:19:33.822: INFO: Observed &DaemonSet event: ADDED +Apr 5 20:19:33.822: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.824: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.824: INFO: Observed daemon set daemon-set in namespace daemonsets-1481 with annotations: map[deprecated.daemonset.template.generation:1] & Conditions: [{StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Apr 5 20:19:33.824: INFO: Observed &DaemonSet event: MODIFIED +Apr 5 20:19:33.824: INFO: Found daemon set daemon-set in namespace daemonsets-1481 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 }] +Apr 5 20:19:33.824: INFO: Daemon set daemon-set has a patched status +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:19:33.827 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-1481, will wait for the garbage collector to delete the pods 04/05/23 20:19:33.827 +Apr 5 20:19:33.887: INFO: Deleting DaemonSet.extensions daemon-set took: 6.292204ms +Apr 5 20:19:33.988: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.148515ms +Apr 5 20:19:36.792: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:19:36.792: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 20:19:36.795: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"144194"},"items":null} + +Apr 5 20:19:36.798: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"144194"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:36.812: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-1481" for this suite. 04/05/23 20:19:36.817 +------------------------------ +• [SLOW TEST] [8.120 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should verify changes to a daemon set status [Conformance] + test/e2e/apps/daemon_set.go:862 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:28.704 + Apr 5 20:19:28.705: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 20:19:28.706 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:28.719 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:28.722 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should verify changes to a daemon set status [Conformance] + test/e2e/apps/daemon_set.go:862 + STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:19:28.753 + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:19:28.764 + Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:28.774: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:28.777: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:28.777: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:29.784: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:29.788: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:29.788: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:19:30.788: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:30.788: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:30.789: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:30.793: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:30.793: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:19:31.783: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:31.784: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:31.784: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:31.788: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:31.788: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:32.783: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:32.787: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:32.787: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:33.786: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:19:33.790: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:19:33.790: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set + STEP: Getting /status 04/05/23 20:19:33.793 + Apr 5 20:19:33.797: INFO: Daemon Set daemon-set has Conditions: [] + STEP: updating the DaemonSet Status 04/05/23 20:19:33.797 + Apr 5 20:19:33.807: 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 04/05/23 20:19:33.807 + Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: ADDED + Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.809: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.810: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.810: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.810: INFO: Found daemon set daemon-set in namespace daemonsets-1481 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}] + Apr 5 20:19:33.810: INFO: Daemon set daemon-set has an updated status + STEP: patching the DaemonSet Status 04/05/23 20:19:33.81 + STEP: watching for the daemon set status to be patched 04/05/23 20:19:33.82 + Apr 5 20:19:33.822: INFO: Observed &DaemonSet event: ADDED + Apr 5 20:19:33.822: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.823: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.824: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.824: INFO: Observed daemon set daemon-set in namespace daemonsets-1481 with annotations: map[deprecated.daemonset.template.generation:1] & Conditions: [{StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] + Apr 5 20:19:33.824: INFO: Observed &DaemonSet event: MODIFIED + Apr 5 20:19:33.824: INFO: Found daemon set daemon-set in namespace daemonsets-1481 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 }] + Apr 5 20:19:33.824: INFO: Daemon set daemon-set has a patched status + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:19:33.827 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-1481, will wait for the garbage collector to delete the pods 04/05/23 20:19:33.827 + Apr 5 20:19:33.887: INFO: Deleting DaemonSet.extensions daemon-set took: 6.292204ms + Apr 5 20:19:33.988: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.148515ms + Apr 5 20:19:36.792: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:19:36.792: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 20:19:36.795: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"144194"},"items":null} + + Apr 5 20:19:36.798: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"144194"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:36.812: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-1481" for this suite. 04/05/23 20:19:36.817 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + listing custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:85 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:36.826 +Apr 5 20:19:36.826: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:19:36.827 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:36.844 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:36.847 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] listing custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:85 +Apr 5 20:19:36.850: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:43.614: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "custom-resource-definition-3923" for this suite. 04/05/23 20:19:43.62 +------------------------------ +• [SLOW TEST] [6.801 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/apimachinery/custom_resource_definition.go:85 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:36.826 + Apr 5 20:19:36.826: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:19:36.827 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:36.844 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:36.847 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] listing custom resource definition objects works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:85 + Apr 5 20:19:36.850: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:43.614: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "custom-resource-definition-3923" for this suite. 04/05/23 20:19:43.62 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:177 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:43.631 +Apr 5 20:19:43.631: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:19:43.632 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:43.647 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:43.651 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:177 +STEP: Creating a pod to test emptydir 0666 on node default medium 04/05/23 20:19:43.654 +Apr 5 20:19:43.664: INFO: Waiting up to 5m0s for pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1" in namespace "emptydir-9910" to be "Succeeded or Failed" +Apr 5 20:19:43.667: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.121827ms +Apr 5 20:19:45.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008680639s +Apr 5 20:19:47.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008688324s +Apr 5 20:19:49.672: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00749195s +Apr 5 20:19:51.672: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008181826s +STEP: Saw pod success 04/05/23 20:19:51.673 +Apr 5 20:19:51.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1" satisfied condition "Succeeded or Failed" +Apr 5 20:19:51.676: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 container test-container: +STEP: delete the pod 04/05/23 20:19:51.691 +Apr 5 20:19:51.706: INFO: Waiting for pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 to disappear +Apr 5 20:19:51.709: INFO: Pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:51.709: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-9910" for this suite. 04/05/23 20:19:51.716 +------------------------------ +• [SLOW TEST] [8.094 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:177 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:43.631 + Apr 5 20:19:43.631: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:19:43.632 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:43.647 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:43.651 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:177 + STEP: Creating a pod to test emptydir 0666 on node default medium 04/05/23 20:19:43.654 + Apr 5 20:19:43.664: INFO: Waiting up to 5m0s for pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1" in namespace "emptydir-9910" to be "Succeeded or Failed" + Apr 5 20:19:43.667: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 3.121827ms + Apr 5 20:19:45.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008680639s + Apr 5 20:19:47.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008688324s + Apr 5 20:19:49.672: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Pending", Reason="", readiness=false. Elapsed: 6.00749195s + Apr 5 20:19:51.672: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008181826s + STEP: Saw pod success 04/05/23 20:19:51.673 + Apr 5 20:19:51.673: INFO: Pod "pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1" satisfied condition "Succeeded or Failed" + Apr 5 20:19:51.676: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 container test-container: + STEP: delete the pod 04/05/23 20:19:51.691 + Apr 5 20:19:51.706: INFO: Waiting for pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 to disappear + Apr 5 20:19:51.709: INFO: Pod pod-6dfbfbac-fd7f-4827-91d3-07113e6bd2b1 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:51.709: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-9910" for this suite. 04/05/23 20:19:51.716 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl diff + should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/kubectl/kubectl.go:931 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:51.727 +Apr 5 20:19:51.727: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:19:51.728 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:51.743 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:51.745 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/kubectl/kubectl.go:931 +STEP: create deployment with httpd image 04/05/23 20:19:51.749 +Apr 5 20:19:51.749: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 create -f -' +Apr 5 20:19:53.768: INFO: stderr: "" +Apr 5 20:19:53.768: INFO: stdout: "deployment.apps/httpd-deployment created\n" +STEP: verify diff finds difference between live and declared image 04/05/23 20:19:53.768 +Apr 5 20:19:53.768: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 diff -f -' +Apr 5 20:19:55.754: INFO: rc: 1 +Apr 5 20:19:55.754: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 delete -f -' +Apr 5 20:19:55.849: INFO: stderr: "" +Apr 5 20:19:55.849: INFO: stdout: "deployment.apps \"httpd-deployment\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 20:19:55.850: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-9391" for this suite. 04/05/23 20:19:55.857 +------------------------------ +• [4.138 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl diff + test/e2e/kubectl/kubectl.go:925 + should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/kubectl/kubectl.go:931 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:51.727 + Apr 5 20:19:51.727: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:19:51.728 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:51.743 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:51.745 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/kubectl/kubectl.go:931 + STEP: create deployment with httpd image 04/05/23 20:19:51.749 + Apr 5 20:19:51.749: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 create -f -' + Apr 5 20:19:53.768: INFO: stderr: "" + Apr 5 20:19:53.768: INFO: stdout: "deployment.apps/httpd-deployment created\n" + STEP: verify diff finds difference between live and declared image 04/05/23 20:19:53.768 + Apr 5 20:19:53.768: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 diff -f -' + Apr 5 20:19:55.754: INFO: rc: 1 + Apr 5 20:19:55.754: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9391 delete -f -' + Apr 5 20:19:55.849: INFO: stderr: "" + Apr 5 20:19:55.849: INFO: stdout: "deployment.apps \"httpd-deployment\" deleted\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 20:19:55.850: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-9391" for this suite. 04/05/23 20:19:55.857 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2250 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:19:55.866 +Apr 5 20:19:55.866: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:19:55.867 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:55.881 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:55.885 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2250 +STEP: creating service in namespace services-6411 04/05/23 20:19:55.888 +STEP: creating service affinity-nodeport-transition in namespace services-6411 04/05/23 20:19:55.888 +STEP: creating replication controller affinity-nodeport-transition in namespace services-6411 04/05/23 20:19:55.911 +I0405 20:19:55.917793 19 runners.go:193] Created replication controller with name: affinity-nodeport-transition, namespace: services-6411, replica count: 3 +I0405 20:19:58.969695 19 runners.go:193] affinity-nodeport-transition Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:20:01.970440 19 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 +Apr 5 20:20:01.985: INFO: Creating new exec pod +Apr 5 20:20:01.991: INFO: Waiting up to 5m0s for pod "execpod-affinity8qpd7" in namespace "services-6411" to be "running" +Apr 5 20:20:01.994: INFO: Pod "execpod-affinity8qpd7": Phase="Pending", Reason="", readiness=false. Elapsed: 3.557055ms +Apr 5 20:20:03.998: INFO: Pod "execpod-affinity8qpd7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007434392s +Apr 5 20:20:05.998: INFO: Pod "execpod-affinity8qpd7": Phase="Running", Reason="", readiness=true. Elapsed: 4.007561619s +Apr 5 20:20:05.998: INFO: Pod "execpod-affinity8qpd7" satisfied condition "running" +Apr 5 20:20:07.005: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 affinity-nodeport-transition 80' +Apr 5 20:20:07.195: INFO: stderr: "+ nc -v -z -w 2 affinity-nodeport-transition 80\nConnection to affinity-nodeport-transition 80 port [tcp/http] succeeded!\n" +Apr 5 20:20:07.195: INFO: stdout: "" +Apr 5 20:20:07.195: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 10.132.96.157 80' +Apr 5 20:20:07.368: INFO: stderr: "+ nc -v -z -w 2 10.132.96.157 80\nConnection to 10.132.96.157 80 port [tcp/http] succeeded!\n" +Apr 5 20:20:07.368: INFO: stdout: "" +Apr 5 20:20:07.368: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 31466' +Apr 5 20:20:07.548: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 31466\nConnection to 195.17.2.92 31466 port [tcp/*] succeeded!\n" +Apr 5 20:20:07.548: INFO: stdout: "" +Apr 5 20:20:07.549: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 31466' +Apr 5 20:20:07.721: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 31466\nConnection to 195.17.150.192 31466 port [tcp/*] succeeded!\n" +Apr 5 20:20:07.721: INFO: stdout: "" +Apr 5 20:20:07.733: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:31466/ ; done' +Apr 5 20:20:08.061: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n" +Apr 5 20:20:08.061: INFO: stdout: "\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-4c7d7" +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 +Apr 5 20:20:08.071: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:31466/ ; done' +Apr 5 20:20:08.394: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n" +Apr 5 20:20:08.394: INFO: stdout: "\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc" +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc +Apr 5 20:20:08.395: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-nodeport-transition in namespace services-6411, will wait for the garbage collector to delete the pods 04/05/23 20:20:08.414 +Apr 5 20:20:08.474: INFO: Deleting ReplicationController affinity-nodeport-transition took: 6.117221ms +Apr 5 20:20:12.974: INFO: Terminating ReplicationController affinity-nodeport-transition pods took: 4.500346249s +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:20:15.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-6411" for this suite. 04/05/23 20:20:15.121 +------------------------------ +• [SLOW TEST] [19.262 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/network/service.go:2250 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:19:55.866 + Apr 5 20:19:55.866: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:19:55.867 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:19:55.881 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:19:55.885 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/network/service.go:2250 + STEP: creating service in namespace services-6411 04/05/23 20:19:55.888 + STEP: creating service affinity-nodeport-transition in namespace services-6411 04/05/23 20:19:55.888 + STEP: creating replication controller affinity-nodeport-transition in namespace services-6411 04/05/23 20:19:55.911 + I0405 20:19:55.917793 19 runners.go:193] Created replication controller with name: affinity-nodeport-transition, namespace: services-6411, replica count: 3 + I0405 20:19:58.969695 19 runners.go:193] affinity-nodeport-transition Pods: 3 out of 3 created, 0 running, 3 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:20:01.970440 19 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 + Apr 5 20:20:01.985: INFO: Creating new exec pod + Apr 5 20:20:01.991: INFO: Waiting up to 5m0s for pod "execpod-affinity8qpd7" in namespace "services-6411" to be "running" + Apr 5 20:20:01.994: INFO: Pod "execpod-affinity8qpd7": Phase="Pending", Reason="", readiness=false. Elapsed: 3.557055ms + Apr 5 20:20:03.998: INFO: Pod "execpod-affinity8qpd7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007434392s + Apr 5 20:20:05.998: INFO: Pod "execpod-affinity8qpd7": Phase="Running", Reason="", readiness=true. Elapsed: 4.007561619s + Apr 5 20:20:05.998: INFO: Pod "execpod-affinity8qpd7" satisfied condition "running" + Apr 5 20:20:07.005: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 affinity-nodeport-transition 80' + Apr 5 20:20:07.195: INFO: stderr: "+ nc -v -z -w 2 affinity-nodeport-transition 80\nConnection to affinity-nodeport-transition 80 port [tcp/http] succeeded!\n" + Apr 5 20:20:07.195: INFO: stdout: "" + Apr 5 20:20:07.195: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 10.132.96.157 80' + Apr 5 20:20:07.368: INFO: stderr: "+ nc -v -z -w 2 10.132.96.157 80\nConnection to 10.132.96.157 80 port [tcp/http] succeeded!\n" + Apr 5 20:20:07.368: INFO: stdout: "" + Apr 5 20:20:07.368: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 195.17.2.92 31466' + Apr 5 20:20:07.548: INFO: stderr: "+ nc -v -z -w 2 195.17.2.92 31466\nConnection to 195.17.2.92 31466 port [tcp/*] succeeded!\n" + Apr 5 20:20:07.548: INFO: stdout: "" + Apr 5 20:20:07.549: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c nc -v -z -w 2 195.17.150.192 31466' + Apr 5 20:20:07.721: INFO: stderr: "+ nc -v -z -w 2 195.17.150.192 31466\nConnection to 195.17.150.192 31466 port [tcp/*] succeeded!\n" + Apr 5 20:20:07.721: INFO: stdout: "" + Apr 5 20:20:07.733: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:31466/ ; done' + Apr 5 20:20:08.061: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n" + Apr 5 20:20:08.061: INFO: stdout: "\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-4c7d7\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-r2wgw\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-4c7d7" + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-r2wgw + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.061: INFO: Received response from host: affinity-nodeport-transition-4c7d7 + Apr 5 20:20:08.071: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=services-6411 exec execpod-affinity8qpd7 -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://195.17.150.191:31466/ ; done' + Apr 5 20:20:08.394: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n+ echo\n+ curl -q -s --connect-timeout 2 http://195.17.150.191:31466/\n" + Apr 5 20:20:08.394: INFO: stdout: "\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc\naffinity-nodeport-transition-jbczc" + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Received response from host: affinity-nodeport-transition-jbczc + Apr 5 20:20:08.395: INFO: Cleaning up the exec pod + STEP: deleting ReplicationController affinity-nodeport-transition in namespace services-6411, will wait for the garbage collector to delete the pods 04/05/23 20:20:08.414 + Apr 5 20:20:08.474: INFO: Deleting ReplicationController affinity-nodeport-transition took: 6.117221ms + Apr 5 20:20:12.974: INFO: Terminating ReplicationController affinity-nodeport-transition pods took: 4.500346249s + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:20:15.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-6411" for this suite. 04/05/23 20:20:15.121 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:130 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:20:15.138 +Apr 5 20:20:15.138: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:20:15.139 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:20:15.153 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:20:15.156 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:130 +STEP: Creating the pod 04/05/23 20:20:15.159 +Apr 5 20:20:15.167: INFO: Waiting up to 5m0s for pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" in namespace "downward-api-1787" to be "running and ready" +Apr 5 20:20:15.173: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 5.784082ms +Apr 5 20:20:15.173: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:20:17.178: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010210151s +Apr 5 20:20:17.178: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:20:19.178: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01060979s +Apr 5 20:20:19.178: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:20:21.180: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Running", Reason="", readiness=true. Elapsed: 6.012222423s +Apr 5 20:20:21.180: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Running (Ready = true) +Apr 5 20:20:21.180: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" satisfied condition "running and ready" +Apr 5 20:20:21.704: INFO: Successfully updated pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:20:23.722: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-1787" for this suite. 04/05/23 20:20:23.727 +------------------------------ +• [SLOW TEST] [8.599 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:130 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:20:15.138 + Apr 5 20:20:15.138: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:20:15.139 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:20:15.153 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:20:15.156 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:130 + STEP: Creating the pod 04/05/23 20:20:15.159 + Apr 5 20:20:15.167: INFO: Waiting up to 5m0s for pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" in namespace "downward-api-1787" to be "running and ready" + Apr 5 20:20:15.173: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 5.784082ms + Apr 5 20:20:15.173: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:20:17.178: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010210151s + Apr 5 20:20:17.178: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:20:19.178: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01060979s + Apr 5 20:20:19.178: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:20:21.180: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc": Phase="Running", Reason="", readiness=true. Elapsed: 6.012222423s + Apr 5 20:20:21.180: INFO: The phase of Pod labelsupdatee3553995-a680-4616-9030-169e35c866fc is Running (Ready = true) + Apr 5 20:20:21.180: INFO: Pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" satisfied condition "running and ready" + Apr 5 20:20:21.704: INFO: Successfully updated pod "labelsupdatee3553995-a680-4616-9030-169e35c866fc" + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:20:23.722: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-1787" for this suite. 04/05/23 20:20:23.727 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:215 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:20:23.741 +Apr 5 20:20:23.741: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 20:20:23.742 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:20:23.755 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:20:23.758 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:215 +STEP: Creating pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 in namespace container-probe-65 04/05/23 20:20:23.761 +Apr 5 20:20:23.770: INFO: Waiting up to 5m0s for pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2" in namespace "container-probe-65" to be "not pending" +Apr 5 20:20:23.776: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.08771ms +Apr 5 20:20:25.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011605768s +Apr 5 20:20:27.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011366335s +Apr 5 20:20:29.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Running", Reason="", readiness=true. Elapsed: 6.011133142s +Apr 5 20:20:29.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2" satisfied condition "not pending" +Apr 5 20:20:29.781: INFO: Started pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 in namespace container-probe-65 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 20:20:29.781 +Apr 5 20:20:29.785: INFO: Initial restart count of pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 is 0 +STEP: deleting the pod 04/05/23 20:24:30.42 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:30.443: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-65" for this suite. 04/05/23 20:24:30.452 +------------------------------ +• [SLOW TEST] [246.735 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/common/node/container_probe.go:215 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:20:23.741 + Apr 5 20:20:23.741: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 20:20:23.742 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:20:23.755 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:20:23.758 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:215 + STEP: Creating pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 in namespace container-probe-65 04/05/23 20:20:23.761 + Apr 5 20:20:23.770: INFO: Waiting up to 5m0s for pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2" in namespace "container-probe-65" to be "not pending" + Apr 5 20:20:23.776: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 6.08771ms + Apr 5 20:20:25.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011605768s + Apr 5 20:20:27.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011366335s + Apr 5 20:20:29.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2": Phase="Running", Reason="", readiness=true. Elapsed: 6.011133142s + Apr 5 20:20:29.781: INFO: Pod "test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2" satisfied condition "not pending" + Apr 5 20:20:29.781: INFO: Started pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 in namespace container-probe-65 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 20:20:29.781 + Apr 5 20:20:29.785: INFO: Initial restart count of pod test-webserver-f41d30c3-12ab-4484-bd00-80a39af8f4d2 is 0 + STEP: deleting the pod 04/05/23 20:24:30.42 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:30.443: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-65" for this suite. 04/05/23 20:24:30.452 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-instrumentation] Events API + should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/instrumentation/events.go:98 +[BeforeEach] [sig-instrumentation] Events API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:30.48 +Apr 5 20:24:30.481: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename events 04/05/23 20:24:30.482 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.5 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.503 +[BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:31 +[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/instrumentation/events.go:98 +STEP: creating a test event 04/05/23 20:24:30.507 +STEP: listing events in all namespaces 04/05/23 20:24:30.516 +STEP: listing events in test namespace 04/05/23 20:24:30.52 +STEP: listing events with field selection filtering on source 04/05/23 20:24:30.524 +STEP: listing events with field selection filtering on reportingController 04/05/23 20:24:30.528 +STEP: getting the test event 04/05/23 20:24:30.532 +STEP: patching the test event 04/05/23 20:24:30.535 +STEP: getting the test event 04/05/23 20:24:30.547 +STEP: updating the test event 04/05/23 20:24:30.551 +STEP: getting the test event 04/05/23 20:24:30.558 +STEP: deleting the test event 04/05/23 20:24:30.562 +STEP: listing events in all namespaces 04/05/23 20:24:30.57 +STEP: listing events in test namespace 04/05/23 20:24:30.574 +[AfterEach] [sig-instrumentation] Events API + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:30.577: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-instrumentation] Events API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-instrumentation] Events API + tear down framework | framework.go:193 +STEP: Destroying namespace "events-6031" for this suite. 04/05/23 20:24:30.583 +------------------------------ +• [0.110 seconds] +[sig-instrumentation] Events API +test/e2e/instrumentation/common/framework.go:23 + should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/instrumentation/events.go:98 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-instrumentation] Events API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:30.48 + Apr 5 20:24:30.481: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename events 04/05/23 20:24:30.482 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.5 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.503 + [BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:31 + [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/instrumentation/events.go:98 + STEP: creating a test event 04/05/23 20:24:30.507 + STEP: listing events in all namespaces 04/05/23 20:24:30.516 + STEP: listing events in test namespace 04/05/23 20:24:30.52 + STEP: listing events with field selection filtering on source 04/05/23 20:24:30.524 + STEP: listing events with field selection filtering on reportingController 04/05/23 20:24:30.528 + STEP: getting the test event 04/05/23 20:24:30.532 + STEP: patching the test event 04/05/23 20:24:30.535 + STEP: getting the test event 04/05/23 20:24:30.547 + STEP: updating the test event 04/05/23 20:24:30.551 + STEP: getting the test event 04/05/23 20:24:30.558 + STEP: deleting the test event 04/05/23 20:24:30.562 + STEP: listing events in all namespaces 04/05/23 20:24:30.57 + STEP: listing events in test namespace 04/05/23 20:24:30.574 + [AfterEach] [sig-instrumentation] Events API + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:30.577: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-instrumentation] Events API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-instrumentation] Events API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-instrumentation] Events API + tear down framework | framework.go:193 + STEP: Destroying namespace "events-6031" for this suite. 04/05/23 20:24:30.583 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-api-machinery] Servers with support for Table transformation + should return a 406 for a backend which does not implement metadata [Conformance] + test/e2e/apimachinery/table_conversion.go:154 +[BeforeEach] [sig-api-machinery] Servers with support for Table transformation + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:30.596 +Apr 5 20:24:30.596: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename tables 04/05/23 20:24:30.598 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.613 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.616 +[BeforeEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/metrics/init/init.go:31 +[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/apimachinery/table_conversion.go:154 +[AfterEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:30.622: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + tear down framework | framework.go:193 +STEP: Destroying namespace "tables-6477" for this suite. 04/05/23 20:24:30.628 +------------------------------ +• [0.039 seconds] +[sig-api-machinery] Servers with support for Table transformation +test/e2e/apimachinery/framework.go:23 + should return a 406 for a backend which does not implement metadata [Conformance] + test/e2e/apimachinery/table_conversion.go:154 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Servers with support for Table transformation + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:30.596 + Apr 5 20:24:30.596: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename tables 04/05/23 20:24:30.598 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.613 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.616 + [BeforeEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/metrics/init/init.go:31 + [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/apimachinery/table_conversion.go:154 + [AfterEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:30.622: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Servers with support for Table transformation + tear down framework | framework.go:193 + STEP: Destroying namespace "tables-6477" for this suite. 04/05/23 20:24:30.628 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:99 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:30.64 +Apr 5 20:24:30.640: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 20:24:30.641 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.655 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.658 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:99 +STEP: Creating configMap with name configmap-test-volume-map-063ce08b-6d5b-43cc-8974-98ab17d0096e 04/05/23 20:24:30.661 +STEP: Creating a pod to test consume configMaps 04/05/23 20:24:30.666 +Apr 5 20:24:30.676: INFO: Waiting up to 5m0s for pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876" in namespace "configmap-6035" to be "Succeeded or Failed" +Apr 5 20:24:30.681: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Pending", Reason="", readiness=false. Elapsed: 4.356214ms +Apr 5 20:24:32.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008945591s +Apr 5 20:24:34.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Running", Reason="", readiness=true. Elapsed: 4.00876251s +Apr 5 20:24:36.688: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Running", Reason="", readiness=false. Elapsed: 6.011162379s +Apr 5 20:24:38.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008989333s +STEP: Saw pod success 04/05/23 20:24:38.685 +Apr 5 20:24:38.686: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876" satisfied condition "Succeeded or Failed" +Apr 5 20:24:38.689: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 container agnhost-container: +STEP: delete the pod 04/05/23 20:24:38.704 +Apr 5 20:24:38.719: INFO: Waiting for pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 to disappear +Apr 5 20:24:38.723: INFO: Pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:38.723: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-6035" for this suite. 04/05/23 20:24:38.728 +------------------------------ +• [SLOW TEST] [8.095 seconds] +[sig-storage] 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/common/storage/configmap_volume.go:99 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:30.64 + Apr 5 20:24:30.640: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 20:24:30.641 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:30.655 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:30.658 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:99 + STEP: Creating configMap with name configmap-test-volume-map-063ce08b-6d5b-43cc-8974-98ab17d0096e 04/05/23 20:24:30.661 + STEP: Creating a pod to test consume configMaps 04/05/23 20:24:30.666 + Apr 5 20:24:30.676: INFO: Waiting up to 5m0s for pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876" in namespace "configmap-6035" to be "Succeeded or Failed" + Apr 5 20:24:30.681: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Pending", Reason="", readiness=false. Elapsed: 4.356214ms + Apr 5 20:24:32.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008945591s + Apr 5 20:24:34.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Running", Reason="", readiness=true. Elapsed: 4.00876251s + Apr 5 20:24:36.688: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Running", Reason="", readiness=false. Elapsed: 6.011162379s + Apr 5 20:24:38.685: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008989333s + STEP: Saw pod success 04/05/23 20:24:38.685 + Apr 5 20:24:38.686: INFO: Pod "pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876" satisfied condition "Succeeded or Failed" + Apr 5 20:24:38.689: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 container agnhost-container: + STEP: delete the pod 04/05/23 20:24:38.704 + Apr 5 20:24:38.719: INFO: Waiting for pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 to disappear + Apr 5 20:24:38.723: INFO: Pod pod-configmaps-602ae9ad-2893-4cc9-99ae-622c1809c876 no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:38.723: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-6035" for this suite. 04/05/23 20:24:38.728 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-scheduling] LimitRange + should list, patch and delete a LimitRange by collection [Conformance] + test/e2e/scheduling/limit_range.go:239 +[BeforeEach] [sig-scheduling] LimitRange + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:38.74 +Apr 5 20:24:38.740: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename limitrange 04/05/23 20:24:38.741 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:38.755 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:38.757 +[BeforeEach] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:31 +[It] should list, patch and delete a LimitRange by collection [Conformance] + test/e2e/scheduling/limit_range.go:239 +STEP: Creating LimitRange "e2e-limitrange-bdmzf" in namespace "limitrange-5658" 04/05/23 20:24:38.761 +STEP: Creating another limitRange in another namespace 04/05/23 20:24:38.766 +Apr 5 20:24:38.780: INFO: Namespace "e2e-limitrange-bdmzf-8407" created +Apr 5 20:24:38.780: INFO: Creating LimitRange "e2e-limitrange-bdmzf" in namespace "e2e-limitrange-bdmzf-8407" +STEP: Listing all LimitRanges with label "e2e-test=e2e-limitrange-bdmzf" 04/05/23 20:24:38.786 +Apr 5 20:24:38.789: INFO: Found 2 limitRanges +STEP: Patching LimitRange "e2e-limitrange-bdmzf" in "limitrange-5658" namespace 04/05/23 20:24:38.789 +Apr 5 20:24:38.796: INFO: LimitRange "e2e-limitrange-bdmzf" has been patched +STEP: Delete LimitRange "e2e-limitrange-bdmzf" by Collection with labelSelector: "e2e-limitrange-bdmzf=patched" 04/05/23 20:24:38.797 +STEP: Confirm that the limitRange "e2e-limitrange-bdmzf" has been deleted 04/05/23 20:24:38.805 +Apr 5 20:24:38.805: INFO: Requesting list of LimitRange to confirm quantity +Apr 5 20:24:38.809: INFO: Found 0 LimitRange with label "e2e-limitrange-bdmzf=patched" +Apr 5 20:24:38.809: INFO: LimitRange "e2e-limitrange-bdmzf" has been deleted. +STEP: Confirm that a single LimitRange still exists with label "e2e-test=e2e-limitrange-bdmzf" 04/05/23 20:24:38.809 +Apr 5 20:24:38.813: INFO: Found 1 limitRange +[AfterEach] [sig-scheduling] LimitRange + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:38.813: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] LimitRange + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] LimitRange + tear down framework | framework.go:193 +STEP: Destroying namespace "limitrange-5658" for this suite. 04/05/23 20:24:38.821 +STEP: Destroying namespace "e2e-limitrange-bdmzf-8407" for this suite. 04/05/23 20:24:38.827 +------------------------------ +• [0.096 seconds] +[sig-scheduling] LimitRange +test/e2e/scheduling/framework.go:40 + should list, patch and delete a LimitRange by collection [Conformance] + test/e2e/scheduling/limit_range.go:239 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] LimitRange + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:38.74 + Apr 5 20:24:38.740: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename limitrange 04/05/23 20:24:38.741 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:38.755 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:38.757 + [BeforeEach] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:31 + [It] should list, patch and delete a LimitRange by collection [Conformance] + test/e2e/scheduling/limit_range.go:239 + STEP: Creating LimitRange "e2e-limitrange-bdmzf" in namespace "limitrange-5658" 04/05/23 20:24:38.761 + STEP: Creating another limitRange in another namespace 04/05/23 20:24:38.766 + Apr 5 20:24:38.780: INFO: Namespace "e2e-limitrange-bdmzf-8407" created + Apr 5 20:24:38.780: INFO: Creating LimitRange "e2e-limitrange-bdmzf" in namespace "e2e-limitrange-bdmzf-8407" + STEP: Listing all LimitRanges with label "e2e-test=e2e-limitrange-bdmzf" 04/05/23 20:24:38.786 + Apr 5 20:24:38.789: INFO: Found 2 limitRanges + STEP: Patching LimitRange "e2e-limitrange-bdmzf" in "limitrange-5658" namespace 04/05/23 20:24:38.789 + Apr 5 20:24:38.796: INFO: LimitRange "e2e-limitrange-bdmzf" has been patched + STEP: Delete LimitRange "e2e-limitrange-bdmzf" by Collection with labelSelector: "e2e-limitrange-bdmzf=patched" 04/05/23 20:24:38.797 + STEP: Confirm that the limitRange "e2e-limitrange-bdmzf" has been deleted 04/05/23 20:24:38.805 + Apr 5 20:24:38.805: INFO: Requesting list of LimitRange to confirm quantity + Apr 5 20:24:38.809: INFO: Found 0 LimitRange with label "e2e-limitrange-bdmzf=patched" + Apr 5 20:24:38.809: INFO: LimitRange "e2e-limitrange-bdmzf" has been deleted. + STEP: Confirm that a single LimitRange still exists with label "e2e-test=e2e-limitrange-bdmzf" 04/05/23 20:24:38.809 + Apr 5 20:24:38.813: INFO: Found 1 limitRange + [AfterEach] [sig-scheduling] LimitRange + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:38.813: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-scheduling] LimitRange + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] LimitRange + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] LimitRange + tear down framework | framework.go:193 + STEP: Destroying namespace "limitrange-5658" for this suite. 04/05/23 20:24:38.821 + STEP: Destroying namespace "e2e-limitrange-bdmzf-8407" for this suite. 04/05/23 20:24:38.827 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:207 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:38.841 +Apr 5 20:24:38.841: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:24:38.842 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:38.857 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:38.86 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:207 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:24:38.863 +Apr 5 20:24:38.871: INFO: Waiting up to 5m0s for pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a" in namespace "downward-api-5501" to be "Succeeded or Failed" +Apr 5 20:24:38.875: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.665556ms +Apr 5 20:24:40.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009936486s +Apr 5 20:24:42.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010538644s +Apr 5 20:24:44.879: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008630225s +Apr 5 20:24:46.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009997005s +STEP: Saw pod success 04/05/23 20:24:46.881 +Apr 5 20:24:46.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a" satisfied condition "Succeeded or Failed" +Apr 5 20:24:46.884: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a container client-container: +STEP: delete the pod 04/05/23 20:24:46.891 +Apr 5 20:24:46.905: INFO: Waiting for pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a to disappear +Apr 5 20:24:46.908: INFO: Pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:24:46.908: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-5501" for this suite. 04/05/23 20:24:46.914 +------------------------------ +• [SLOW TEST] [8.080 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:207 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:38.841 + Apr 5 20:24:38.841: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:24:38.842 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:38.857 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:38.86 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:207 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:24:38.863 + Apr 5 20:24:38.871: INFO: Waiting up to 5m0s for pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a" in namespace "downward-api-5501" to be "Succeeded or Failed" + Apr 5 20:24:38.875: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.665556ms + Apr 5 20:24:40.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009936486s + Apr 5 20:24:42.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010538644s + Apr 5 20:24:44.879: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008630225s + Apr 5 20:24:46.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009997005s + STEP: Saw pod success 04/05/23 20:24:46.881 + Apr 5 20:24:46.881: INFO: Pod "downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a" satisfied condition "Succeeded or Failed" + Apr 5 20:24:46.884: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a container client-container: + STEP: delete the pod 04/05/23 20:24:46.891 + Apr 5 20:24:46.905: INFO: Waiting for pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a to disappear + Apr 5 20:24:46.908: INFO: Pod downwardapi-volume-05d435ac-bfd2-4202-9e66-00ad574b744a no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:24:46.908: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-5501" for this suite. 04/05/23 20:24:46.914 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-network] DNS + should provide DNS for ExternalName services [Conformance] + test/e2e/network/dns.go:333 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:24:46.923 +Apr 5 20:24:46.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 20:24:46.928 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:46.943 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:46.946 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide DNS for ExternalName services [Conformance] + test/e2e/network/dns.go:333 +STEP: Creating a test externalName service 04/05/23 20:24:46.949 +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:46.955 +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:46.955 +STEP: creating a pod to probe DNS 04/05/23 20:24:46.955 +STEP: submitting the pod to kubernetes 04/05/23 20:24:46.955 +Apr 5 20:24:46.964: INFO: Waiting up to 15m0s for pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844" in namespace "dns-5687" to be "running" +Apr 5 20:24:46.970: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 6.284863ms +Apr 5 20:24:48.975: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01109799s +Apr 5 20:24:50.985: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 4.021334901s +Apr 5 20:24:52.978: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Running", Reason="", readiness=true. Elapsed: 6.013696515s +Apr 5 20:24:52.978: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844" satisfied condition "running" +STEP: retrieving the pod 04/05/23 20:24:52.978 +STEP: looking for the results for each expected name from probers 04/05/23 20:24:52.981 +Apr 5 20:24:52.993: INFO: DNS probes using dns-test-9a55f74e-a154-4968-ad48-144164b04844 succeeded + +STEP: deleting the pod 04/05/23 20:24:52.993 +STEP: changing the externalName to bar.example.com 04/05/23 20:24:53.007 +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:53.023 +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:53.023 +STEP: creating a second pod to probe DNS 04/05/23 20:24:53.023 +STEP: submitting the pod to kubernetes 04/05/23 20:24:53.023 +Apr 5 20:24:53.033: INFO: Waiting up to 15m0s for pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde" in namespace "dns-5687" to be "running" +Apr 5 20:24:53.038: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 4.98545ms +Apr 5 20:24:55.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009777738s +Apr 5 20:24:57.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009972824s +Apr 5 20:24:59.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Running", Reason="", readiness=true. Elapsed: 6.009641523s +Apr 5 20:24:59.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde" satisfied condition "running" +STEP: retrieving the pod 04/05/23 20:24:59.043 +STEP: looking for the results for each expected name from probers 04/05/23 20:24:59.047 +Apr 5 20:24:59.053: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:24:59.057: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:24:59.057: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + +Apr 5 20:25:04.067: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:04.071: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:04.071: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + +Apr 5 20:25:09.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:09.068: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:09.069: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + +Apr 5 20:25:14.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:14.068: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:14.068: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + +Apr 5 20:25:19.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:19.069: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. +' instead of 'bar.example.com.' +Apr 5 20:25:19.069: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + +Apr 5 20:25:24.072: INFO: DNS probes using dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde succeeded + +STEP: deleting the pod 04/05/23 20:25:24.072 +STEP: changing the service to type=ClusterIP 04/05/23 20:25:24.09 +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local A > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:25:24.139 +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local A > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:25:24.139 +STEP: creating a third pod to probe DNS 04/05/23 20:25:24.139 +STEP: submitting the pod to kubernetes 04/05/23 20:25:24.143 +Apr 5 20:25:24.153: INFO: Waiting up to 15m0s for pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe" in namespace "dns-5687" to be "running" +Apr 5 20:25:24.158: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.48857ms +Apr 5 20:25:26.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010192306s +Apr 5 20:25:28.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009766733s +Apr 5 20:25:30.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Running", Reason="", readiness=true. Elapsed: 6.010179311s +Apr 5 20:25:30.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe" satisfied condition "running" +STEP: retrieving the pod 04/05/23 20:25:30.163 +STEP: looking for the results for each expected name from probers 04/05/23 20:25:30.167 +Apr 5 20:25:30.178: INFO: DNS probes using dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe succeeded + +STEP: deleting the pod 04/05/23 20:25:30.178 +STEP: deleting the test externalName service 04/05/23 20:25:30.192 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 20:25:30.221: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-5687" for this suite. 04/05/23 20:25:30.228 +------------------------------ +• [SLOW TEST] [43.315 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for ExternalName services [Conformance] + test/e2e/network/dns.go:333 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:24:46.923 + Apr 5 20:24:46.923: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 20:24:46.928 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:24:46.943 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:24:46.946 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide DNS for ExternalName services [Conformance] + test/e2e/network/dns.go:333 + STEP: Creating a test externalName service 04/05/23 20:24:46.949 + STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:46.955 + STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:46.955 + STEP: creating a pod to probe DNS 04/05/23 20:24:46.955 + STEP: submitting the pod to kubernetes 04/05/23 20:24:46.955 + Apr 5 20:24:46.964: INFO: Waiting up to 15m0s for pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844" in namespace "dns-5687" to be "running" + Apr 5 20:24:46.970: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 6.284863ms + Apr 5 20:24:48.975: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01109799s + Apr 5 20:24:50.985: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Pending", Reason="", readiness=false. Elapsed: 4.021334901s + Apr 5 20:24:52.978: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844": Phase="Running", Reason="", readiness=true. Elapsed: 6.013696515s + Apr 5 20:24:52.978: INFO: Pod "dns-test-9a55f74e-a154-4968-ad48-144164b04844" satisfied condition "running" + STEP: retrieving the pod 04/05/23 20:24:52.978 + STEP: looking for the results for each expected name from probers 04/05/23 20:24:52.981 + Apr 5 20:24:52.993: INFO: DNS probes using dns-test-9a55f74e-a154-4968-ad48-144164b04844 succeeded + + STEP: deleting the pod 04/05/23 20:24:52.993 + STEP: changing the externalName to bar.example.com 04/05/23 20:24:53.007 + STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:53.023 + STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:24:53.023 + STEP: creating a second pod to probe DNS 04/05/23 20:24:53.023 + STEP: submitting the pod to kubernetes 04/05/23 20:24:53.023 + Apr 5 20:24:53.033: INFO: Waiting up to 15m0s for pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde" in namespace "dns-5687" to be "running" + Apr 5 20:24:53.038: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 4.98545ms + Apr 5 20:24:55.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009777738s + Apr 5 20:24:57.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009972824s + Apr 5 20:24:59.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde": Phase="Running", Reason="", readiness=true. Elapsed: 6.009641523s + Apr 5 20:24:59.043: INFO: Pod "dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde" satisfied condition "running" + STEP: retrieving the pod 04/05/23 20:24:59.043 + STEP: looking for the results for each expected name from probers 04/05/23 20:24:59.047 + Apr 5 20:24:59.053: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:24:59.057: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:24:59.057: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + + Apr 5 20:25:04.067: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:04.071: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:04.071: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + + Apr 5 20:25:09.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:09.068: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:09.069: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + + Apr 5 20:25:14.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:14.068: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:14.068: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + + Apr 5 20:25:19.064: INFO: File wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:19.069: INFO: File jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local from pod dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde contains 'foo.example.com. + ' instead of 'bar.example.com.' + Apr 5 20:25:19.069: INFO: Lookups using dns-5687/dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde failed for: [wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local] + + Apr 5 20:25:24.072: INFO: DNS probes using dns-test-513d95dd-e48a-448a-a38f-d65864cd8dde succeeded + + STEP: deleting the pod 04/05/23 20:25:24.072 + STEP: changing the service to type=ClusterIP 04/05/23 20:25:24.09 + STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local A > /results/wheezy_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:25:24.139 + STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-5687.svc.cluster.local A > /results/jessie_udp@dns-test-service-3.dns-5687.svc.cluster.local; sleep 1; done + 04/05/23 20:25:24.139 + STEP: creating a third pod to probe DNS 04/05/23 20:25:24.139 + STEP: submitting the pod to kubernetes 04/05/23 20:25:24.143 + Apr 5 20:25:24.153: INFO: Waiting up to 15m0s for pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe" in namespace "dns-5687" to be "running" + Apr 5 20:25:24.158: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.48857ms + Apr 5 20:25:26.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010192306s + Apr 5 20:25:28.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009766733s + Apr 5 20:25:30.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe": Phase="Running", Reason="", readiness=true. Elapsed: 6.010179311s + Apr 5 20:25:30.163: INFO: Pod "dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe" satisfied condition "running" + STEP: retrieving the pod 04/05/23 20:25:30.163 + STEP: looking for the results for each expected name from probers 04/05/23 20:25:30.167 + Apr 5 20:25:30.178: INFO: DNS probes using dns-test-7039b3f2-6a67-4d8f-bf1b-fe4c29e2babe succeeded + + STEP: deleting the pod 04/05/23 20:25:30.178 + STEP: deleting the test externalName service 04/05/23 20:25:30.192 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 20:25:30.221: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-5687" for this suite. 04/05/23 20:25:30.228 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should test the lifecycle of a ReplicationController [Conformance] + test/e2e/apps/rc.go:110 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:25:30.248 +Apr 5 20:25:30.249: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 20:25:30.25 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:30.269 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:30.272 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should test the lifecycle of a ReplicationController [Conformance] + test/e2e/apps/rc.go:110 +STEP: creating a ReplicationController 04/05/23 20:25:30.281 +STEP: waiting for RC to be added 04/05/23 20:25:30.288 +STEP: waiting for available Replicas 04/05/23 20:25:30.288 +STEP: patching ReplicationController 04/05/23 20:25:34.781 +STEP: waiting for RC to be modified 04/05/23 20:25:34.791 +STEP: patching ReplicationController status 04/05/23 20:25:34.792 +STEP: waiting for RC to be modified 04/05/23 20:25:34.799 +STEP: waiting for available Replicas 04/05/23 20:25:34.799 +STEP: fetching ReplicationController status 04/05/23 20:25:34.805 +STEP: patching ReplicationController scale 04/05/23 20:25:34.809 +STEP: waiting for RC to be modified 04/05/23 20:25:34.815 +STEP: waiting for ReplicationController's scale to be the max amount 04/05/23 20:25:34.815 +STEP: fetching ReplicationController; ensuring that it's patched 04/05/23 20:25:39.627 +STEP: updating ReplicationController status 04/05/23 20:25:39.63 +STEP: waiting for RC to be modified 04/05/23 20:25:39.636 +STEP: listing all ReplicationControllers 04/05/23 20:25:39.636 +STEP: checking that ReplicationController has expected values 04/05/23 20:25:39.643 +STEP: deleting ReplicationControllers by collection 04/05/23 20:25:39.643 +STEP: waiting for ReplicationController to have a DELETED watchEvent 04/05/23 20:25:39.651 +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 20:25:39.697: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-6349" for this suite. 04/05/23 20:25:39.705 +------------------------------ +• [SLOW TEST] [9.464 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should test the lifecycle of a ReplicationController [Conformance] + test/e2e/apps/rc.go:110 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:25:30.248 + Apr 5 20:25:30.249: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 20:25:30.25 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:30.269 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:30.272 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should test the lifecycle of a ReplicationController [Conformance] + test/e2e/apps/rc.go:110 + STEP: creating a ReplicationController 04/05/23 20:25:30.281 + STEP: waiting for RC to be added 04/05/23 20:25:30.288 + STEP: waiting for available Replicas 04/05/23 20:25:30.288 + STEP: patching ReplicationController 04/05/23 20:25:34.781 + STEP: waiting for RC to be modified 04/05/23 20:25:34.791 + STEP: patching ReplicationController status 04/05/23 20:25:34.792 + STEP: waiting for RC to be modified 04/05/23 20:25:34.799 + STEP: waiting for available Replicas 04/05/23 20:25:34.799 + STEP: fetching ReplicationController status 04/05/23 20:25:34.805 + STEP: patching ReplicationController scale 04/05/23 20:25:34.809 + STEP: waiting for RC to be modified 04/05/23 20:25:34.815 + STEP: waiting for ReplicationController's scale to be the max amount 04/05/23 20:25:34.815 + STEP: fetching ReplicationController; ensuring that it's patched 04/05/23 20:25:39.627 + STEP: updating ReplicationController status 04/05/23 20:25:39.63 + STEP: waiting for RC to be modified 04/05/23 20:25:39.636 + STEP: listing all ReplicationControllers 04/05/23 20:25:39.636 + STEP: checking that ReplicationController has expected values 04/05/23 20:25:39.643 + STEP: deleting ReplicationControllers by collection 04/05/23 20:25:39.643 + STEP: waiting for ReplicationController to have a DELETED watchEvent 04/05/23 20:25:39.651 + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 20:25:39.697: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-6349" for this suite. 04/05/23 20:25:39.705 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:88 +[BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:25:39.712 +Apr 5 20:25:39.712: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:25:39.712 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:39.727 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:39.729 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:88 +STEP: Creating projection with secret that has name projected-secret-test-map-4343c0ad-21b5-4f6b-a963-61ab42c550d6 04/05/23 20:25:39.732 +STEP: Creating a pod to test consume secrets 04/05/23 20:25:39.737 +Apr 5 20:25:39.745: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6" in namespace "projected-9423" to be "Succeeded or Failed" +Apr 5 20:25:39.749: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.474219ms +Apr 5 20:25:41.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008872568s +Apr 5 20:25:43.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009266246s +Apr 5 20:25:45.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008508553s +Apr 5 20:25:47.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00866931s +STEP: Saw pod success 04/05/23 20:25:47.754 +Apr 5 20:25:47.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6" satisfied condition "Succeeded or Failed" +Apr 5 20:25:47.757: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 container projected-secret-volume-test: +STEP: delete the pod 04/05/23 20:25:47.765 +Apr 5 20:25:47.780: INFO: Waiting for pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 to disappear +Apr 5 20:25:47.783: INFO: Pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 +Apr 5 20:25:47.784: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-9423" for this suite. 04/05/23 20:25:47.789 +------------------------------ +• [SLOW TEST] [8.084 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/common/storage/projected_secret.go:88 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected secret + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:25:39.712 + Apr 5 20:25:39.712: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:25:39.712 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:39.727 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:39.729 + [BeforeEach] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_secret.go:88 + STEP: Creating projection with secret that has name projected-secret-test-map-4343c0ad-21b5-4f6b-a963-61ab42c550d6 04/05/23 20:25:39.732 + STEP: Creating a pod to test consume secrets 04/05/23 20:25:39.737 + Apr 5 20:25:39.745: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6" in namespace "projected-9423" to be "Succeeded or Failed" + Apr 5 20:25:39.749: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.474219ms + Apr 5 20:25:41.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008872568s + Apr 5 20:25:43.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009266246s + Apr 5 20:25:45.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008508553s + Apr 5 20:25:47.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.00866931s + STEP: Saw pod success 04/05/23 20:25:47.754 + Apr 5 20:25:47.754: INFO: Pod "pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6" satisfied condition "Succeeded or Failed" + Apr 5 20:25:47.757: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 container projected-secret-volume-test: + STEP: delete the pod 04/05/23 20:25:47.765 + Apr 5 20:25:47.780: INFO: Waiting for pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 to disappear + Apr 5 20:25:47.783: INFO: Pod pod-projected-secrets-c65fffa5-965a-491c-919d-986fcf7adeb6 no longer exists + [AfterEach] [sig-storage] Projected secret + test/e2e/framework/node/init/init.go:32 + Apr 5 20:25:47.784: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected secret + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected secret + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected secret + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-9423" for this suite. 04/05/23 20:25:47.789 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + patching/updating a mutating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:508 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:25:47.801 +Apr 5 20:25:47.801: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename webhook 04/05/23 20:25:47.802 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:47.815 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:47.818 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 +STEP: Setting up server cert 04/05/23 20:25:47.834 +STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 20:25:48.196 +STEP: Deploying the webhook pod 04/05/23 20:25:48.208 +STEP: Wait for the deployment to be ready 04/05/23 20:25:48.22 +Apr 5 20:25:48.227: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Apr 5 20:25:50.238: 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(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 20:25:52.244: 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(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 20:25:54.242 +STEP: Verifying the service has paired with the endpoint 04/05/23 20:25:54.264 +Apr 5 20:25:55.265: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] patching/updating a mutating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:508 +STEP: Creating a mutating webhook configuration 04/05/23 20:25:55.27 +STEP: Updating a mutating webhook configuration's rules to not include the create operation 04/05/23 20:25:55.29 +STEP: Creating a configMap that should not be mutated 04/05/23 20:25:55.298 +STEP: Patching a mutating webhook configuration's rules to include the create operation 04/05/23 20:25:55.308 +STEP: Creating a configMap that should be mutated 04/05/23 20:25:55.316 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:25:55.339: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "webhook-5324" for this suite. 04/05/23 20:25:55.424 +STEP: Destroying namespace "webhook-5324-markers" for this suite. 04/05/23 20:25:55.433 +------------------------------ +• [SLOW TEST] [7.640 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + patching/updating a mutating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:508 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:25:47.801 + Apr 5 20:25:47.801: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename webhook 04/05/23 20:25:47.802 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:47.815 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:47.818 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:90 + STEP: Setting up server cert 04/05/23 20:25:47.834 + STEP: Create role binding to let webhook read extension-apiserver-authentication 04/05/23 20:25:48.196 + STEP: Deploying the webhook pod 04/05/23 20:25:48.208 + STEP: Wait for the deployment to be ready 04/05/23 20:25:48.22 + Apr 5 20:25:48.227: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set + Apr 5 20:25:50.238: 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(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 20:25:52.244: 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(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 25, 48, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-865554f4d9\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 20:25:54.242 + STEP: Verifying the service has paired with the endpoint 04/05/23 20:25:54.264 + Apr 5 20:25:55.265: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 + [It] patching/updating a mutating webhook should work [Conformance] + test/e2e/apimachinery/webhook.go:508 + STEP: Creating a mutating webhook configuration 04/05/23 20:25:55.27 + STEP: Updating a mutating webhook configuration's rules to not include the create operation 04/05/23 20:25:55.29 + STEP: Creating a configMap that should not be mutated 04/05/23 20:25:55.298 + STEP: Patching a mutating webhook configuration's rules to include the create operation 04/05/23 20:25:55.308 + STEP: Creating a configMap that should be mutated 04/05/23 20:25:55.316 + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:25:55.339: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:105 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "webhook-5324" for this suite. 04/05/23 20:25:55.424 + STEP: Destroying namespace "webhook-5324-markers" for this suite. 04/05/23 20:25:55.433 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:423 +[BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:25:55.447 +Apr 5 20:25:55.447: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename configmap 04/05/23 20:25:55.448 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:55.463 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:55.466 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:423 +STEP: Creating configMap with name configmap-test-volume-6638cbd2-1cf9-4ad7-a1ed-fd3aba9fe3e5 04/05/23 20:25:55.469 +STEP: Creating a pod to test consume configMaps 04/05/23 20:25:55.476 +Apr 5 20:25:55.486: INFO: Waiting up to 5m0s for pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c" in namespace "configmap-7760" to be "Succeeded or Failed" +Apr 5 20:25:55.490: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.117278ms +Apr 5 20:25:57.494: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007699883s +Apr 5 20:25:59.494: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008034035s +Apr 5 20:26:01.496: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009911298s +Apr 5 20:26:03.495: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008130019s +STEP: Saw pod success 04/05/23 20:26:03.495 +Apr 5 20:26:03.495: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c" satisfied condition "Succeeded or Failed" +Apr 5 20:26:03.498: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c container configmap-volume-test: +STEP: delete the pod 04/05/23 20:26:03.506 +Apr 5 20:26:03.521: INFO: Waiting for pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c to disappear +Apr 5 20:26:03.524: INFO: Pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:03.524: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 +STEP: Destroying namespace "configmap-7760" for this suite. 04/05/23 20:26:03.531 +------------------------------ +• [SLOW TEST] [8.092 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/common/storage/configmap_volume.go:423 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] ConfigMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:25:55.447 + Apr 5 20:25:55.447: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename configmap 04/05/23 20:25:55.448 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:25:55.463 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:25:55.466 + [BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/configmap_volume.go:423 + STEP: Creating configMap with name configmap-test-volume-6638cbd2-1cf9-4ad7-a1ed-fd3aba9fe3e5 04/05/23 20:25:55.469 + STEP: Creating a pod to test consume configMaps 04/05/23 20:25:55.476 + Apr 5 20:25:55.486: INFO: Waiting up to 5m0s for pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c" in namespace "configmap-7760" to be "Succeeded or Failed" + Apr 5 20:25:55.490: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 3.117278ms + Apr 5 20:25:57.494: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007699883s + Apr 5 20:25:59.494: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008034035s + Apr 5 20:26:01.496: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009911298s + Apr 5 20:26:03.495: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008130019s + STEP: Saw pod success 04/05/23 20:26:03.495 + Apr 5 20:26:03.495: INFO: Pod "pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c" satisfied condition "Succeeded or Failed" + Apr 5 20:26:03.498: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c container configmap-volume-test: + STEP: delete the pod 04/05/23 20:26:03.506 + Apr 5 20:26:03.521: INFO: Waiting for pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c to disappear + Apr 5 20:26:03.524: INFO: Pod pod-configmaps-472bc9e4-4b94-43df-beba-0d4cabb9c72c no longer exists + [AfterEach] [sig-storage] ConfigMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:03.524: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] ConfigMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] ConfigMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] ConfigMap + tear down framework | framework.go:193 + STEP: Destroying namespace "configmap-7760" for this suite. 04/05/23 20:26:03.531 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Discovery + should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/apimachinery/discovery.go:122 +[BeforeEach] [sig-api-machinery] Discovery + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:03.542 +Apr 5 20:26:03.542: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename discovery 04/05/23 20:26:03.543 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:03.559 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:03.562 +[BeforeEach] [sig-api-machinery] Discovery + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] Discovery + test/e2e/apimachinery/discovery.go:43 +STEP: Setting up server cert 04/05/23 20:26:03.569 +[It] should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/apimachinery/discovery.go:122 +Apr 5 20:26:04.029: INFO: Checking APIGroup: apiregistration.k8s.io +Apr 5 20:26:04.030: INFO: PreferredVersion.GroupVersion: apiregistration.k8s.io/v1 +Apr 5 20:26:04.030: INFO: Versions found [{apiregistration.k8s.io/v1 v1}] +Apr 5 20:26:04.030: INFO: apiregistration.k8s.io/v1 matches apiregistration.k8s.io/v1 +Apr 5 20:26:04.031: INFO: Checking APIGroup: apps +Apr 5 20:26:04.032: INFO: PreferredVersion.GroupVersion: apps/v1 +Apr 5 20:26:04.032: INFO: Versions found [{apps/v1 v1}] +Apr 5 20:26:04.032: INFO: apps/v1 matches apps/v1 +Apr 5 20:26:04.032: INFO: Checking APIGroup: events.k8s.io +Apr 5 20:26:04.033: INFO: PreferredVersion.GroupVersion: events.k8s.io/v1 +Apr 5 20:26:04.033: INFO: Versions found [{events.k8s.io/v1 v1}] +Apr 5 20:26:04.033: INFO: events.k8s.io/v1 matches events.k8s.io/v1 +Apr 5 20:26:04.033: INFO: Checking APIGroup: authentication.k8s.io +Apr 5 20:26:04.034: INFO: PreferredVersion.GroupVersion: authentication.k8s.io/v1 +Apr 5 20:26:04.034: INFO: Versions found [{authentication.k8s.io/v1 v1}] +Apr 5 20:26:04.034: INFO: authentication.k8s.io/v1 matches authentication.k8s.io/v1 +Apr 5 20:26:04.034: INFO: Checking APIGroup: authorization.k8s.io +Apr 5 20:26:04.036: INFO: PreferredVersion.GroupVersion: authorization.k8s.io/v1 +Apr 5 20:26:04.036: INFO: Versions found [{authorization.k8s.io/v1 v1}] +Apr 5 20:26:04.036: INFO: authorization.k8s.io/v1 matches authorization.k8s.io/v1 +Apr 5 20:26:04.036: INFO: Checking APIGroup: autoscaling +Apr 5 20:26:04.037: INFO: PreferredVersion.GroupVersion: autoscaling/v2 +Apr 5 20:26:04.037: INFO: Versions found [{autoscaling/v2 v2} {autoscaling/v1 v1}] +Apr 5 20:26:04.037: INFO: autoscaling/v2 matches autoscaling/v2 +Apr 5 20:26:04.037: INFO: Checking APIGroup: batch +Apr 5 20:26:04.038: INFO: PreferredVersion.GroupVersion: batch/v1 +Apr 5 20:26:04.038: INFO: Versions found [{batch/v1 v1}] +Apr 5 20:26:04.038: INFO: batch/v1 matches batch/v1 +Apr 5 20:26:04.038: INFO: Checking APIGroup: certificates.k8s.io +Apr 5 20:26:04.039: INFO: PreferredVersion.GroupVersion: certificates.k8s.io/v1 +Apr 5 20:26:04.039: INFO: Versions found [{certificates.k8s.io/v1 v1}] +Apr 5 20:26:04.039: INFO: certificates.k8s.io/v1 matches certificates.k8s.io/v1 +Apr 5 20:26:04.039: INFO: Checking APIGroup: networking.k8s.io +Apr 5 20:26:04.040: INFO: PreferredVersion.GroupVersion: networking.k8s.io/v1 +Apr 5 20:26:04.040: INFO: Versions found [{networking.k8s.io/v1 v1}] +Apr 5 20:26:04.040: INFO: networking.k8s.io/v1 matches networking.k8s.io/v1 +Apr 5 20:26:04.040: INFO: Checking APIGroup: policy +Apr 5 20:26:04.041: INFO: PreferredVersion.GroupVersion: policy/v1 +Apr 5 20:26:04.041: INFO: Versions found [{policy/v1 v1}] +Apr 5 20:26:04.041: INFO: policy/v1 matches policy/v1 +Apr 5 20:26:04.042: INFO: Checking APIGroup: rbac.authorization.k8s.io +Apr 5 20:26:04.043: INFO: PreferredVersion.GroupVersion: rbac.authorization.k8s.io/v1 +Apr 5 20:26:04.043: INFO: Versions found [{rbac.authorization.k8s.io/v1 v1}] +Apr 5 20:26:04.043: INFO: rbac.authorization.k8s.io/v1 matches rbac.authorization.k8s.io/v1 +Apr 5 20:26:04.043: INFO: Checking APIGroup: storage.k8s.io +Apr 5 20:26:04.044: INFO: PreferredVersion.GroupVersion: storage.k8s.io/v1 +Apr 5 20:26:04.044: INFO: Versions found [{storage.k8s.io/v1 v1} {storage.k8s.io/v1beta1 v1beta1}] +Apr 5 20:26:04.044: INFO: storage.k8s.io/v1 matches storage.k8s.io/v1 +Apr 5 20:26:04.044: INFO: Checking APIGroup: admissionregistration.k8s.io +Apr 5 20:26:04.046: INFO: PreferredVersion.GroupVersion: admissionregistration.k8s.io/v1 +Apr 5 20:26:04.046: INFO: Versions found [{admissionregistration.k8s.io/v1 v1}] +Apr 5 20:26:04.046: INFO: admissionregistration.k8s.io/v1 matches admissionregistration.k8s.io/v1 +Apr 5 20:26:04.046: INFO: Checking APIGroup: apiextensions.k8s.io +Apr 5 20:26:04.047: INFO: PreferredVersion.GroupVersion: apiextensions.k8s.io/v1 +Apr 5 20:26:04.047: INFO: Versions found [{apiextensions.k8s.io/v1 v1}] +Apr 5 20:26:04.047: INFO: apiextensions.k8s.io/v1 matches apiextensions.k8s.io/v1 +Apr 5 20:26:04.047: INFO: Checking APIGroup: scheduling.k8s.io +Apr 5 20:26:04.048: INFO: PreferredVersion.GroupVersion: scheduling.k8s.io/v1 +Apr 5 20:26:04.048: INFO: Versions found [{scheduling.k8s.io/v1 v1}] +Apr 5 20:26:04.048: INFO: scheduling.k8s.io/v1 matches scheduling.k8s.io/v1 +Apr 5 20:26:04.048: INFO: Checking APIGroup: coordination.k8s.io +Apr 5 20:26:04.049: INFO: PreferredVersion.GroupVersion: coordination.k8s.io/v1 +Apr 5 20:26:04.049: INFO: Versions found [{coordination.k8s.io/v1 v1}] +Apr 5 20:26:04.049: INFO: coordination.k8s.io/v1 matches coordination.k8s.io/v1 +Apr 5 20:26:04.049: INFO: Checking APIGroup: node.k8s.io +Apr 5 20:26:04.051: INFO: PreferredVersion.GroupVersion: node.k8s.io/v1 +Apr 5 20:26:04.051: INFO: Versions found [{node.k8s.io/v1 v1}] +Apr 5 20:26:04.051: INFO: node.k8s.io/v1 matches node.k8s.io/v1 +Apr 5 20:26:04.051: INFO: Checking APIGroup: discovery.k8s.io +Apr 5 20:26:04.052: INFO: PreferredVersion.GroupVersion: discovery.k8s.io/v1 +Apr 5 20:26:04.052: INFO: Versions found [{discovery.k8s.io/v1 v1}] +Apr 5 20:26:04.052: INFO: discovery.k8s.io/v1 matches discovery.k8s.io/v1 +Apr 5 20:26:04.052: INFO: Checking APIGroup: flowcontrol.apiserver.k8s.io +Apr 5 20:26:04.053: INFO: PreferredVersion.GroupVersion: flowcontrol.apiserver.k8s.io/v1beta3 +Apr 5 20:26:04.053: INFO: Versions found [{flowcontrol.apiserver.k8s.io/v1beta3 v1beta3} {flowcontrol.apiserver.k8s.io/v1beta2 v1beta2}] +Apr 5 20:26:04.053: INFO: flowcontrol.apiserver.k8s.io/v1beta3 matches flowcontrol.apiserver.k8s.io/v1beta3 +Apr 5 20:26:04.053: INFO: Checking APIGroup: acme.cert-manager.io +Apr 5 20:26:04.054: INFO: PreferredVersion.GroupVersion: acme.cert-manager.io/v1 +Apr 5 20:26:04.054: INFO: Versions found [{acme.cert-manager.io/v1 v1}] +Apr 5 20:26:04.054: INFO: acme.cert-manager.io/v1 matches acme.cert-manager.io/v1 +Apr 5 20:26:04.054: INFO: Checking APIGroup: cert-manager.io +Apr 5 20:26:04.055: INFO: PreferredVersion.GroupVersion: cert-manager.io/v1 +Apr 5 20:26:04.055: INFO: Versions found [{cert-manager.io/v1 v1}] +Apr 5 20:26:04.055: INFO: cert-manager.io/v1 matches cert-manager.io/v1 +Apr 5 20:26:04.055: INFO: Checking APIGroup: anywhere.eks.amazonaws.com +Apr 5 20:26:04.056: INFO: PreferredVersion.GroupVersion: anywhere.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.057: INFO: Versions found [{anywhere.eks.amazonaws.com/v1alpha1 v1alpha1}] +Apr 5 20:26:04.057: INFO: anywhere.eks.amazonaws.com/v1alpha1 matches anywhere.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.057: INFO: Checking APIGroup: distro.eks.amazonaws.com +Apr 5 20:26:04.058: INFO: PreferredVersion.GroupVersion: distro.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.058: INFO: Versions found [{distro.eks.amazonaws.com/v1alpha1 v1alpha1}] +Apr 5 20:26:04.058: INFO: distro.eks.amazonaws.com/v1alpha1 matches distro.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.058: INFO: Checking APIGroup: ipam.cluster.x-k8s.io +Apr 5 20:26:04.059: INFO: PreferredVersion.GroupVersion: ipam.cluster.x-k8s.io/v1alpha1 +Apr 5 20:26:04.059: INFO: Versions found [{ipam.cluster.x-k8s.io/v1alpha1 v1alpha1}] +Apr 5 20:26:04.059: INFO: ipam.cluster.x-k8s.io/v1alpha1 matches ipam.cluster.x-k8s.io/v1alpha1 +Apr 5 20:26:04.059: INFO: Checking APIGroup: packages.eks.amazonaws.com +Apr 5 20:26:04.061: INFO: PreferredVersion.GroupVersion: packages.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.061: INFO: Versions found [{packages.eks.amazonaws.com/v1alpha1 v1alpha1}] +Apr 5 20:26:04.061: INFO: packages.eks.amazonaws.com/v1alpha1 matches packages.eks.amazonaws.com/v1alpha1 +Apr 5 20:26:04.061: INFO: Checking APIGroup: runtime.cluster.x-k8s.io +Apr 5 20:26:04.062: INFO: PreferredVersion.GroupVersion: runtime.cluster.x-k8s.io/v1alpha1 +Apr 5 20:26:04.062: INFO: Versions found [{runtime.cluster.x-k8s.io/v1alpha1 v1alpha1}] +Apr 5 20:26:04.062: INFO: runtime.cluster.x-k8s.io/v1alpha1 matches runtime.cluster.x-k8s.io/v1alpha1 +Apr 5 20:26:04.062: INFO: Checking APIGroup: addons.cluster.x-k8s.io +Apr 5 20:26:04.063: INFO: PreferredVersion.GroupVersion: addons.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.063: INFO: Versions found [{addons.cluster.x-k8s.io/v1beta1 v1beta1} {addons.cluster.x-k8s.io/v1alpha4 v1alpha4} {addons.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.063: INFO: addons.cluster.x-k8s.io/v1beta1 matches addons.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.063: INFO: Checking APIGroup: bootstrap.cluster.x-k8s.io +Apr 5 20:26:04.064: INFO: PreferredVersion.GroupVersion: bootstrap.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.065: INFO: Versions found [{bootstrap.cluster.x-k8s.io/v1beta1 v1beta1} {bootstrap.cluster.x-k8s.io/v1alpha4 v1alpha4} {bootstrap.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.065: INFO: bootstrap.cluster.x-k8s.io/v1beta1 matches bootstrap.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.065: INFO: Checking APIGroup: cluster.x-k8s.io +Apr 5 20:26:04.066: INFO: PreferredVersion.GroupVersion: cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.066: INFO: Versions found [{cluster.x-k8s.io/v1beta1 v1beta1} {cluster.x-k8s.io/v1alpha4 v1alpha4} {cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.066: INFO: cluster.x-k8s.io/v1beta1 matches cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.066: INFO: Checking APIGroup: clusterctl.cluster.x-k8s.io +Apr 5 20:26:04.067: INFO: PreferredVersion.GroupVersion: clusterctl.cluster.x-k8s.io/v1alpha3 +Apr 5 20:26:04.067: INFO: Versions found [{clusterctl.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.067: INFO: clusterctl.cluster.x-k8s.io/v1alpha3 matches clusterctl.cluster.x-k8s.io/v1alpha3 +Apr 5 20:26:04.067: INFO: Checking APIGroup: controlplane.cluster.x-k8s.io +Apr 5 20:26:04.069: INFO: PreferredVersion.GroupVersion: controlplane.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.069: INFO: Versions found [{controlplane.cluster.x-k8s.io/v1beta1 v1beta1} {controlplane.cluster.x-k8s.io/v1alpha4 v1alpha4} {controlplane.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.069: INFO: controlplane.cluster.x-k8s.io/v1beta1 matches controlplane.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.069: INFO: Checking APIGroup: etcdcluster.cluster.x-k8s.io +Apr 5 20:26:04.070: INFO: PreferredVersion.GroupVersion: etcdcluster.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.070: INFO: Versions found [{etcdcluster.cluster.x-k8s.io/v1beta1 v1beta1} {etcdcluster.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.070: INFO: etcdcluster.cluster.x-k8s.io/v1beta1 matches etcdcluster.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.070: INFO: Checking APIGroup: infrastructure.cluster.x-k8s.io +Apr 5 20:26:04.071: INFO: PreferredVersion.GroupVersion: infrastructure.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.071: INFO: Versions found [{infrastructure.cluster.x-k8s.io/v1beta1 v1beta1} {infrastructure.cluster.x-k8s.io/v1alpha4 v1alpha4} {infrastructure.cluster.x-k8s.io/v1alpha3 v1alpha3}] +Apr 5 20:26:04.071: INFO: infrastructure.cluster.x-k8s.io/v1beta1 matches infrastructure.cluster.x-k8s.io/v1beta1 +Apr 5 20:26:04.071: INFO: Checking APIGroup: cilium.io +Apr 5 20:26:04.073: INFO: PreferredVersion.GroupVersion: cilium.io/v2 +Apr 5 20:26:04.073: INFO: Versions found [{cilium.io/v2 v2}] +Apr 5 20:26:04.073: INFO: cilium.io/v2 matches cilium.io/v2 +[AfterEach] [sig-api-machinery] Discovery + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:04.073: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Discovery + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Discovery + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Discovery + tear down framework | framework.go:193 +STEP: Destroying namespace "discovery-2474" for this suite. 04/05/23 20:26:04.08 +------------------------------ +• [0.547 seconds] +[sig-api-machinery] Discovery +test/e2e/apimachinery/framework.go:23 + should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/apimachinery/discovery.go:122 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Discovery + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:03.542 + Apr 5 20:26:03.542: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename discovery 04/05/23 20:26:03.543 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:03.559 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:03.562 + [BeforeEach] [sig-api-machinery] Discovery + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] Discovery + test/e2e/apimachinery/discovery.go:43 + STEP: Setting up server cert 04/05/23 20:26:03.569 + [It] should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/apimachinery/discovery.go:122 + Apr 5 20:26:04.029: INFO: Checking APIGroup: apiregistration.k8s.io + Apr 5 20:26:04.030: INFO: PreferredVersion.GroupVersion: apiregistration.k8s.io/v1 + Apr 5 20:26:04.030: INFO: Versions found [{apiregistration.k8s.io/v1 v1}] + Apr 5 20:26:04.030: INFO: apiregistration.k8s.io/v1 matches apiregistration.k8s.io/v1 + Apr 5 20:26:04.031: INFO: Checking APIGroup: apps + Apr 5 20:26:04.032: INFO: PreferredVersion.GroupVersion: apps/v1 + Apr 5 20:26:04.032: INFO: Versions found [{apps/v1 v1}] + Apr 5 20:26:04.032: INFO: apps/v1 matches apps/v1 + Apr 5 20:26:04.032: INFO: Checking APIGroup: events.k8s.io + Apr 5 20:26:04.033: INFO: PreferredVersion.GroupVersion: events.k8s.io/v1 + Apr 5 20:26:04.033: INFO: Versions found [{events.k8s.io/v1 v1}] + Apr 5 20:26:04.033: INFO: events.k8s.io/v1 matches events.k8s.io/v1 + Apr 5 20:26:04.033: INFO: Checking APIGroup: authentication.k8s.io + Apr 5 20:26:04.034: INFO: PreferredVersion.GroupVersion: authentication.k8s.io/v1 + Apr 5 20:26:04.034: INFO: Versions found [{authentication.k8s.io/v1 v1}] + Apr 5 20:26:04.034: INFO: authentication.k8s.io/v1 matches authentication.k8s.io/v1 + Apr 5 20:26:04.034: INFO: Checking APIGroup: authorization.k8s.io + Apr 5 20:26:04.036: INFO: PreferredVersion.GroupVersion: authorization.k8s.io/v1 + Apr 5 20:26:04.036: INFO: Versions found [{authorization.k8s.io/v1 v1}] + Apr 5 20:26:04.036: INFO: authorization.k8s.io/v1 matches authorization.k8s.io/v1 + Apr 5 20:26:04.036: INFO: Checking APIGroup: autoscaling + Apr 5 20:26:04.037: INFO: PreferredVersion.GroupVersion: autoscaling/v2 + Apr 5 20:26:04.037: INFO: Versions found [{autoscaling/v2 v2} {autoscaling/v1 v1}] + Apr 5 20:26:04.037: INFO: autoscaling/v2 matches autoscaling/v2 + Apr 5 20:26:04.037: INFO: Checking APIGroup: batch + Apr 5 20:26:04.038: INFO: PreferredVersion.GroupVersion: batch/v1 + Apr 5 20:26:04.038: INFO: Versions found [{batch/v1 v1}] + Apr 5 20:26:04.038: INFO: batch/v1 matches batch/v1 + Apr 5 20:26:04.038: INFO: Checking APIGroup: certificates.k8s.io + Apr 5 20:26:04.039: INFO: PreferredVersion.GroupVersion: certificates.k8s.io/v1 + Apr 5 20:26:04.039: INFO: Versions found [{certificates.k8s.io/v1 v1}] + Apr 5 20:26:04.039: INFO: certificates.k8s.io/v1 matches certificates.k8s.io/v1 + Apr 5 20:26:04.039: INFO: Checking APIGroup: networking.k8s.io + Apr 5 20:26:04.040: INFO: PreferredVersion.GroupVersion: networking.k8s.io/v1 + Apr 5 20:26:04.040: INFO: Versions found [{networking.k8s.io/v1 v1}] + Apr 5 20:26:04.040: INFO: networking.k8s.io/v1 matches networking.k8s.io/v1 + Apr 5 20:26:04.040: INFO: Checking APIGroup: policy + Apr 5 20:26:04.041: INFO: PreferredVersion.GroupVersion: policy/v1 + Apr 5 20:26:04.041: INFO: Versions found [{policy/v1 v1}] + Apr 5 20:26:04.041: INFO: policy/v1 matches policy/v1 + Apr 5 20:26:04.042: INFO: Checking APIGroup: rbac.authorization.k8s.io + Apr 5 20:26:04.043: INFO: PreferredVersion.GroupVersion: rbac.authorization.k8s.io/v1 + Apr 5 20:26:04.043: INFO: Versions found [{rbac.authorization.k8s.io/v1 v1}] + Apr 5 20:26:04.043: INFO: rbac.authorization.k8s.io/v1 matches rbac.authorization.k8s.io/v1 + Apr 5 20:26:04.043: INFO: Checking APIGroup: storage.k8s.io + Apr 5 20:26:04.044: INFO: PreferredVersion.GroupVersion: storage.k8s.io/v1 + Apr 5 20:26:04.044: INFO: Versions found [{storage.k8s.io/v1 v1} {storage.k8s.io/v1beta1 v1beta1}] + Apr 5 20:26:04.044: INFO: storage.k8s.io/v1 matches storage.k8s.io/v1 + Apr 5 20:26:04.044: INFO: Checking APIGroup: admissionregistration.k8s.io + Apr 5 20:26:04.046: INFO: PreferredVersion.GroupVersion: admissionregistration.k8s.io/v1 + Apr 5 20:26:04.046: INFO: Versions found [{admissionregistration.k8s.io/v1 v1}] + Apr 5 20:26:04.046: INFO: admissionregistration.k8s.io/v1 matches admissionregistration.k8s.io/v1 + Apr 5 20:26:04.046: INFO: Checking APIGroup: apiextensions.k8s.io + Apr 5 20:26:04.047: INFO: PreferredVersion.GroupVersion: apiextensions.k8s.io/v1 + Apr 5 20:26:04.047: INFO: Versions found [{apiextensions.k8s.io/v1 v1}] + Apr 5 20:26:04.047: INFO: apiextensions.k8s.io/v1 matches apiextensions.k8s.io/v1 + Apr 5 20:26:04.047: INFO: Checking APIGroup: scheduling.k8s.io + Apr 5 20:26:04.048: INFO: PreferredVersion.GroupVersion: scheduling.k8s.io/v1 + Apr 5 20:26:04.048: INFO: Versions found [{scheduling.k8s.io/v1 v1}] + Apr 5 20:26:04.048: INFO: scheduling.k8s.io/v1 matches scheduling.k8s.io/v1 + Apr 5 20:26:04.048: INFO: Checking APIGroup: coordination.k8s.io + Apr 5 20:26:04.049: INFO: PreferredVersion.GroupVersion: coordination.k8s.io/v1 + Apr 5 20:26:04.049: INFO: Versions found [{coordination.k8s.io/v1 v1}] + Apr 5 20:26:04.049: INFO: coordination.k8s.io/v1 matches coordination.k8s.io/v1 + Apr 5 20:26:04.049: INFO: Checking APIGroup: node.k8s.io + Apr 5 20:26:04.051: INFO: PreferredVersion.GroupVersion: node.k8s.io/v1 + Apr 5 20:26:04.051: INFO: Versions found [{node.k8s.io/v1 v1}] + Apr 5 20:26:04.051: INFO: node.k8s.io/v1 matches node.k8s.io/v1 + Apr 5 20:26:04.051: INFO: Checking APIGroup: discovery.k8s.io + Apr 5 20:26:04.052: INFO: PreferredVersion.GroupVersion: discovery.k8s.io/v1 + Apr 5 20:26:04.052: INFO: Versions found [{discovery.k8s.io/v1 v1}] + Apr 5 20:26:04.052: INFO: discovery.k8s.io/v1 matches discovery.k8s.io/v1 + Apr 5 20:26:04.052: INFO: Checking APIGroup: flowcontrol.apiserver.k8s.io + Apr 5 20:26:04.053: INFO: PreferredVersion.GroupVersion: flowcontrol.apiserver.k8s.io/v1beta3 + Apr 5 20:26:04.053: INFO: Versions found [{flowcontrol.apiserver.k8s.io/v1beta3 v1beta3} {flowcontrol.apiserver.k8s.io/v1beta2 v1beta2}] + Apr 5 20:26:04.053: INFO: flowcontrol.apiserver.k8s.io/v1beta3 matches flowcontrol.apiserver.k8s.io/v1beta3 + Apr 5 20:26:04.053: INFO: Checking APIGroup: acme.cert-manager.io + Apr 5 20:26:04.054: INFO: PreferredVersion.GroupVersion: acme.cert-manager.io/v1 + Apr 5 20:26:04.054: INFO: Versions found [{acme.cert-manager.io/v1 v1}] + Apr 5 20:26:04.054: INFO: acme.cert-manager.io/v1 matches acme.cert-manager.io/v1 + Apr 5 20:26:04.054: INFO: Checking APIGroup: cert-manager.io + Apr 5 20:26:04.055: INFO: PreferredVersion.GroupVersion: cert-manager.io/v1 + Apr 5 20:26:04.055: INFO: Versions found [{cert-manager.io/v1 v1}] + Apr 5 20:26:04.055: INFO: cert-manager.io/v1 matches cert-manager.io/v1 + Apr 5 20:26:04.055: INFO: Checking APIGroup: anywhere.eks.amazonaws.com + Apr 5 20:26:04.056: INFO: PreferredVersion.GroupVersion: anywhere.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.057: INFO: Versions found [{anywhere.eks.amazonaws.com/v1alpha1 v1alpha1}] + Apr 5 20:26:04.057: INFO: anywhere.eks.amazonaws.com/v1alpha1 matches anywhere.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.057: INFO: Checking APIGroup: distro.eks.amazonaws.com + Apr 5 20:26:04.058: INFO: PreferredVersion.GroupVersion: distro.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.058: INFO: Versions found [{distro.eks.amazonaws.com/v1alpha1 v1alpha1}] + Apr 5 20:26:04.058: INFO: distro.eks.amazonaws.com/v1alpha1 matches distro.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.058: INFO: Checking APIGroup: ipam.cluster.x-k8s.io + Apr 5 20:26:04.059: INFO: PreferredVersion.GroupVersion: ipam.cluster.x-k8s.io/v1alpha1 + Apr 5 20:26:04.059: INFO: Versions found [{ipam.cluster.x-k8s.io/v1alpha1 v1alpha1}] + Apr 5 20:26:04.059: INFO: ipam.cluster.x-k8s.io/v1alpha1 matches ipam.cluster.x-k8s.io/v1alpha1 + Apr 5 20:26:04.059: INFO: Checking APIGroup: packages.eks.amazonaws.com + Apr 5 20:26:04.061: INFO: PreferredVersion.GroupVersion: packages.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.061: INFO: Versions found [{packages.eks.amazonaws.com/v1alpha1 v1alpha1}] + Apr 5 20:26:04.061: INFO: packages.eks.amazonaws.com/v1alpha1 matches packages.eks.amazonaws.com/v1alpha1 + Apr 5 20:26:04.061: INFO: Checking APIGroup: runtime.cluster.x-k8s.io + Apr 5 20:26:04.062: INFO: PreferredVersion.GroupVersion: runtime.cluster.x-k8s.io/v1alpha1 + Apr 5 20:26:04.062: INFO: Versions found [{runtime.cluster.x-k8s.io/v1alpha1 v1alpha1}] + Apr 5 20:26:04.062: INFO: runtime.cluster.x-k8s.io/v1alpha1 matches runtime.cluster.x-k8s.io/v1alpha1 + Apr 5 20:26:04.062: INFO: Checking APIGroup: addons.cluster.x-k8s.io + Apr 5 20:26:04.063: INFO: PreferredVersion.GroupVersion: addons.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.063: INFO: Versions found [{addons.cluster.x-k8s.io/v1beta1 v1beta1} {addons.cluster.x-k8s.io/v1alpha4 v1alpha4} {addons.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.063: INFO: addons.cluster.x-k8s.io/v1beta1 matches addons.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.063: INFO: Checking APIGroup: bootstrap.cluster.x-k8s.io + Apr 5 20:26:04.064: INFO: PreferredVersion.GroupVersion: bootstrap.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.065: INFO: Versions found [{bootstrap.cluster.x-k8s.io/v1beta1 v1beta1} {bootstrap.cluster.x-k8s.io/v1alpha4 v1alpha4} {bootstrap.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.065: INFO: bootstrap.cluster.x-k8s.io/v1beta1 matches bootstrap.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.065: INFO: Checking APIGroup: cluster.x-k8s.io + Apr 5 20:26:04.066: INFO: PreferredVersion.GroupVersion: cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.066: INFO: Versions found [{cluster.x-k8s.io/v1beta1 v1beta1} {cluster.x-k8s.io/v1alpha4 v1alpha4} {cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.066: INFO: cluster.x-k8s.io/v1beta1 matches cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.066: INFO: Checking APIGroup: clusterctl.cluster.x-k8s.io + Apr 5 20:26:04.067: INFO: PreferredVersion.GroupVersion: clusterctl.cluster.x-k8s.io/v1alpha3 + Apr 5 20:26:04.067: INFO: Versions found [{clusterctl.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.067: INFO: clusterctl.cluster.x-k8s.io/v1alpha3 matches clusterctl.cluster.x-k8s.io/v1alpha3 + Apr 5 20:26:04.067: INFO: Checking APIGroup: controlplane.cluster.x-k8s.io + Apr 5 20:26:04.069: INFO: PreferredVersion.GroupVersion: controlplane.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.069: INFO: Versions found [{controlplane.cluster.x-k8s.io/v1beta1 v1beta1} {controlplane.cluster.x-k8s.io/v1alpha4 v1alpha4} {controlplane.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.069: INFO: controlplane.cluster.x-k8s.io/v1beta1 matches controlplane.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.069: INFO: Checking APIGroup: etcdcluster.cluster.x-k8s.io + Apr 5 20:26:04.070: INFO: PreferredVersion.GroupVersion: etcdcluster.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.070: INFO: Versions found [{etcdcluster.cluster.x-k8s.io/v1beta1 v1beta1} {etcdcluster.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.070: INFO: etcdcluster.cluster.x-k8s.io/v1beta1 matches etcdcluster.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.070: INFO: Checking APIGroup: infrastructure.cluster.x-k8s.io + Apr 5 20:26:04.071: INFO: PreferredVersion.GroupVersion: infrastructure.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.071: INFO: Versions found [{infrastructure.cluster.x-k8s.io/v1beta1 v1beta1} {infrastructure.cluster.x-k8s.io/v1alpha4 v1alpha4} {infrastructure.cluster.x-k8s.io/v1alpha3 v1alpha3}] + Apr 5 20:26:04.071: INFO: infrastructure.cluster.x-k8s.io/v1beta1 matches infrastructure.cluster.x-k8s.io/v1beta1 + Apr 5 20:26:04.071: INFO: Checking APIGroup: cilium.io + Apr 5 20:26:04.073: INFO: PreferredVersion.GroupVersion: cilium.io/v2 + Apr 5 20:26:04.073: INFO: Versions found [{cilium.io/v2 v2}] + Apr 5 20:26:04.073: INFO: cilium.io/v2 matches cilium.io/v2 + [AfterEach] [sig-api-machinery] Discovery + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:04.073: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Discovery + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Discovery + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Discovery + tear down framework | framework.go:193 + STEP: Destroying namespace "discovery-2474" for this suite. 04/05/23 20:26:04.08 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a read only busybox container + should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:184 +[BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:04.097 +Apr 5 20:26:04.097: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubelet-test 04/05/23 20:26:04.098 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:04.112 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:04.115 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 +[It] should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:184 +Apr 5 20:26:04.150: INFO: Waiting up to 5m0s for pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be" in namespace "kubelet-test-4745" to be "running and ready" +Apr 5 20:26:04.154: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 4.146672ms +Apr 5 20:26:04.154: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:06.159: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008967427s +Apr 5 20:26:06.159: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:08.159: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008748199s +Apr 5 20:26:08.159: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:10.158: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Running", Reason="", readiness=true. Elapsed: 6.008141653s +Apr 5 20:26:10.158: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Running (Ready = true) +Apr 5 20:26:10.158: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be" satisfied condition "running and ready" +[AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:10.170: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 +STEP: Destroying namespace "kubelet-test-4745" for this suite. 04/05/23 20:26:10.176 +------------------------------ +• [SLOW TEST] [6.085 seconds] +[sig-node] Kubelet +test/e2e/common/node/framework.go:23 + when scheduling a read only busybox container + test/e2e/common/node/kubelet.go:175 + should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:184 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:04.097 + Apr 5 20:26:04.097: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubelet-test 04/05/23 20:26:04.098 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:04.112 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:04.115 + [BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 + [It] should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:184 + Apr 5 20:26:04.150: INFO: Waiting up to 5m0s for pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be" in namespace "kubelet-test-4745" to be "running and ready" + Apr 5 20:26:04.154: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 4.146672ms + Apr 5 20:26:04.154: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:06.159: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008967427s + Apr 5 20:26:06.159: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:08.159: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008748199s + Apr 5 20:26:08.159: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:10.158: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be": Phase="Running", Reason="", readiness=true. Elapsed: 6.008141653s + Apr 5 20:26:10.158: INFO: The phase of Pod busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be is Running (Ready = true) + Apr 5 20:26:10.158: INFO: Pod "busybox-readonly-fs1e60489c-d2a9-453a-893e-f84f39f790be" satisfied condition "running and ready" + [AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:10.170: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 + STEP: Destroying namespace "kubelet-test-4745" for this suite. 04/05/23 20:26:10.176 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:122 +[BeforeEach] [sig-network] Networking + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:10.184 +Apr 5 20:26:10.184: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:26:10.186 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:10.199 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:10.203 +[BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 +[It] should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:122 +STEP: Performing setup for networking test in namespace pod-network-test-8349 04/05/23 20:26:10.207 +STEP: creating a selector 04/05/23 20:26:10.207 +STEP: Creating the service pods in kubernetes 04/05/23 20:26:10.208 +Apr 5 20:26:10.208: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Apr 5 20:26:10.244: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-8349" to be "running and ready" +Apr 5 20:26:10.256: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 11.265141ms +Apr 5 20:26:10.256: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:12.260: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015300906s +Apr 5 20:26:12.260: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:14.261: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016344887s +Apr 5 20:26:14.261: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:26:16.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.016342667s +Apr 5 20:26:16.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:18.264: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.019400613s +Apr 5 20:26:18.264: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:20.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.016785417s +Apr 5 20:26:20.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:22.262: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.01734568s +Apr 5 20:26:22.262: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:24.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.016488881s +Apr 5 20:26:24.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:26.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.016272321s +Apr 5 20:26:26.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:28.260: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.015847042s +Apr 5 20:26:28.260: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:30.260: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.015965442s +Apr 5 20:26:30.260: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:26:32.259: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.014880325s +Apr 5 20:26:32.260: INFO: The phase of Pod netserver-0 is Running (Ready = true) +Apr 5 20:26:32.260: INFO: Pod "netserver-0" satisfied condition "running and ready" +Apr 5 20:26:32.264: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-8349" to be "running and ready" +Apr 5 20:26:32.267: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.293938ms +Apr 5 20:26:32.267: INFO: The phase of Pod netserver-1 is Running (Ready = true) +Apr 5 20:26:32.267: INFO: Pod "netserver-1" satisfied condition "running and ready" +Apr 5 20:26:32.270: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-8349" to be "running and ready" +Apr 5 20:26:32.274: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.196675ms +Apr 5 20:26:32.274: INFO: The phase of Pod netserver-2 is Running (Ready = true) +Apr 5 20:26:32.274: INFO: Pod "netserver-2" satisfied condition "running and ready" +STEP: Creating test pods 04/05/23 20:26:32.277 +Apr 5 20:26:32.294: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-8349" to be "running" +Apr 5 20:26:32.300: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.654265ms +Apr 5 20:26:34.304: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00948087s +Apr 5 20:26:36.305: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010251499s +Apr 5 20:26:38.304: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.009167439s +Apr 5 20:26:38.304: INFO: Pod "test-container-pod" satisfied condition "running" +Apr 5 20:26:38.308: INFO: Waiting up to 5m0s for pod "host-test-container-pod" in namespace "pod-network-test-8349" to be "running" +Apr 5 20:26:38.312: INFO: Pod "host-test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 3.65077ms +Apr 5 20:26:38.312: INFO: Pod "host-test-container-pod" satisfied condition "running" +Apr 5 20:26:38.314: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Apr 5 20:26:38.314: INFO: Going to poll 192.168.2.176 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Apr 5 20:26:38.318: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.2.176 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:26:38.318: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:26:38.319: INFO: ExecWithOptions: Clientset creation +Apr 5 20:26:38.319: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.2.176+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 20:26:39.412: INFO: Found all 1 expected endpoints: [netserver-0] +Apr 5 20:26:39.413: INFO: Going to poll 192.168.3.43 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Apr 5 20:26:39.417: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.3.43 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:26:39.417: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:26:39.418: INFO: ExecWithOptions: Clientset creation +Apr 5 20:26:39.418: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.3.43+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 20:26:40.505: INFO: Found all 1 expected endpoints: [netserver-1] +Apr 5 20:26:40.506: INFO: Going to poll 192.168.1.218 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Apr 5 20:26:40.511: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.1.218 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:26:40.511: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:26:40.512: INFO: ExecWithOptions: Clientset creation +Apr 5 20:26:40.512: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.1.218+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 20:26:41.592: INFO: Found all 1 expected endpoints: [netserver-2] +[AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:41.593: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 +STEP: Destroying namespace "pod-network-test-8349" for this suite. 04/05/23 20:26:41.602 +------------------------------ +• [SLOW TEST] [31.425 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/common/network/networking.go:122 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Networking + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:10.184 + Apr 5 20:26:10.184: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:26:10.186 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:10.199 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:10.203 + [BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 + [It] should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:122 + STEP: Performing setup for networking test in namespace pod-network-test-8349 04/05/23 20:26:10.207 + STEP: creating a selector 04/05/23 20:26:10.207 + STEP: Creating the service pods in kubernetes 04/05/23 20:26:10.208 + Apr 5 20:26:10.208: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable + Apr 5 20:26:10.244: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-8349" to be "running and ready" + Apr 5 20:26:10.256: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 11.265141ms + Apr 5 20:26:10.256: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:12.260: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015300906s + Apr 5 20:26:12.260: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:14.261: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016344887s + Apr 5 20:26:14.261: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:26:16.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.016342667s + Apr 5 20:26:16.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:18.264: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.019400613s + Apr 5 20:26:18.264: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:20.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.016785417s + Apr 5 20:26:20.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:22.262: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.01734568s + Apr 5 20:26:22.262: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:24.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.016488881s + Apr 5 20:26:24.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:26.261: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.016272321s + Apr 5 20:26:26.261: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:28.260: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.015847042s + Apr 5 20:26:28.260: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:30.260: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.015965442s + Apr 5 20:26:30.260: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:26:32.259: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.014880325s + Apr 5 20:26:32.260: INFO: The phase of Pod netserver-0 is Running (Ready = true) + Apr 5 20:26:32.260: INFO: Pod "netserver-0" satisfied condition "running and ready" + Apr 5 20:26:32.264: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-8349" to be "running and ready" + Apr 5 20:26:32.267: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.293938ms + Apr 5 20:26:32.267: INFO: The phase of Pod netserver-1 is Running (Ready = true) + Apr 5 20:26:32.267: INFO: Pod "netserver-1" satisfied condition "running and ready" + Apr 5 20:26:32.270: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-8349" to be "running and ready" + Apr 5 20:26:32.274: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.196675ms + Apr 5 20:26:32.274: INFO: The phase of Pod netserver-2 is Running (Ready = true) + Apr 5 20:26:32.274: INFO: Pod "netserver-2" satisfied condition "running and ready" + STEP: Creating test pods 04/05/23 20:26:32.277 + Apr 5 20:26:32.294: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-8349" to be "running" + Apr 5 20:26:32.300: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.654265ms + Apr 5 20:26:34.304: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00948087s + Apr 5 20:26:36.305: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 4.010251499s + Apr 5 20:26:38.304: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 6.009167439s + Apr 5 20:26:38.304: INFO: Pod "test-container-pod" satisfied condition "running" + Apr 5 20:26:38.308: INFO: Waiting up to 5m0s for pod "host-test-container-pod" in namespace "pod-network-test-8349" to be "running" + Apr 5 20:26:38.312: INFO: Pod "host-test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 3.65077ms + Apr 5 20:26:38.312: INFO: Pod "host-test-container-pod" satisfied condition "running" + Apr 5 20:26:38.314: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 + Apr 5 20:26:38.314: INFO: Going to poll 192.168.2.176 on port 8081 at least 0 times, with a maximum of 39 tries before failing + Apr 5 20:26:38.318: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.2.176 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:26:38.318: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:26:38.319: INFO: ExecWithOptions: Clientset creation + Apr 5 20:26:38.319: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.2.176+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 20:26:39.412: INFO: Found all 1 expected endpoints: [netserver-0] + Apr 5 20:26:39.413: INFO: Going to poll 192.168.3.43 on port 8081 at least 0 times, with a maximum of 39 tries before failing + Apr 5 20:26:39.417: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.3.43 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:26:39.417: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:26:39.418: INFO: ExecWithOptions: Clientset creation + Apr 5 20:26:39.418: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.3.43+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 20:26:40.505: INFO: Found all 1 expected endpoints: [netserver-1] + Apr 5 20:26:40.506: INFO: Going to poll 192.168.1.218 on port 8081 at least 0 times, with a maximum of 39 tries before failing + Apr 5 20:26:40.511: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 192.168.1.218 8081 | grep -v '^\s*$'] Namespace:pod-network-test-8349 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:26:40.511: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:26:40.512: INFO: ExecWithOptions: Clientset creation + Apr 5 20:26:40.512: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-8349/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+192.168.1.218+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 20:26:41.592: INFO: Found all 1 expected endpoints: [netserver-2] + [AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:41.593: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 + STEP: Destroying namespace "pod-network-test-8349" for this suite. 04/05/23 20:26:41.602 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-network] Proxy version v1 + A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/network/proxy.go:380 +[BeforeEach] version v1 + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:41.612 +Apr 5 20:26:41.613: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename proxy 04/05/23 20:26:41.614 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:41.629 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:41.632 +[BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 +[It] A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/network/proxy.go:380 +Apr 5 20:26:41.634: INFO: Creating pod... +Apr 5 20:26:41.644: INFO: Waiting up to 5m0s for pod "agnhost" in namespace "proxy-5166" to be "running" +Apr 5 20:26:41.651: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 7.128246ms +Apr 5 20:26:43.656: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012093784s +Apr 5 20:26:45.657: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013596029s +Apr 5 20:26:47.657: INFO: Pod "agnhost": Phase="Running", Reason="", readiness=true. Elapsed: 6.013288637s +Apr 5 20:26:47.657: INFO: Pod "agnhost" satisfied condition "running" +Apr 5 20:26:47.657: INFO: Creating service... +Apr 5 20:26:47.678: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=DELETE +Apr 5 20:26:47.685: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Apr 5 20:26:47.685: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=OPTIONS +Apr 5 20:26:47.691: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Apr 5 20:26:47.691: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=PATCH +Apr 5 20:26:47.695: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Apr 5 20:26:47.695: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=POST +Apr 5 20:26:47.699: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Apr 5 20:26:47.699: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=PUT +Apr 5 20:26:47.703: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Apr 5 20:26:47.703: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=DELETE +Apr 5 20:26:47.709: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Apr 5 20:26:47.709: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=OPTIONS +Apr 5 20:26:47.715: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Apr 5 20:26:47.715: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=PATCH +Apr 5 20:26:47.721: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Apr 5 20:26:47.722: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=POST +Apr 5 20:26:47.727: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Apr 5 20:26:47.727: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=PUT +Apr 5 20:26:47.732: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Apr 5 20:26:47.732: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=GET +Apr 5 20:26:47.736: INFO: http.Client request:GET StatusCode:301 +Apr 5 20:26:47.736: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=GET +Apr 5 20:26:47.741: INFO: http.Client request:GET StatusCode:301 +Apr 5 20:26:47.741: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=HEAD +Apr 5 20:26:47.744: INFO: http.Client request:HEAD StatusCode:301 +Apr 5 20:26:47.744: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=HEAD +Apr 5 20:26:47.750: INFO: http.Client request:HEAD StatusCode:301 +[AfterEach] version v1 + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:47.751: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] version v1 + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] version v1 + dump namespaces | framework.go:196 +[DeferCleanup (Each)] version v1 + tear down framework | framework.go:193 +STEP: Destroying namespace "proxy-5166" for this suite. 04/05/23 20:26:47.757 +------------------------------ +• [SLOW TEST] [6.153 seconds] +[sig-network] Proxy +test/e2e/network/common/framework.go:23 + version v1 + test/e2e/network/proxy.go:74 + A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/network/proxy.go:380 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] version v1 + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:41.612 + Apr 5 20:26:41.613: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename proxy 04/05/23 20:26:41.614 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:41.629 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:41.632 + [BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 + [It] A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/network/proxy.go:380 + Apr 5 20:26:41.634: INFO: Creating pod... + Apr 5 20:26:41.644: INFO: Waiting up to 5m0s for pod "agnhost" in namespace "proxy-5166" to be "running" + Apr 5 20:26:41.651: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 7.128246ms + Apr 5 20:26:43.656: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012093784s + Apr 5 20:26:45.657: INFO: Pod "agnhost": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013596029s + Apr 5 20:26:47.657: INFO: Pod "agnhost": Phase="Running", Reason="", readiness=true. Elapsed: 6.013288637s + Apr 5 20:26:47.657: INFO: Pod "agnhost" satisfied condition "running" + Apr 5 20:26:47.657: INFO: Creating service... + Apr 5 20:26:47.678: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=DELETE + Apr 5 20:26:47.685: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE + Apr 5 20:26:47.685: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=OPTIONS + Apr 5 20:26:47.691: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS + Apr 5 20:26:47.691: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=PATCH + Apr 5 20:26:47.695: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH + Apr 5 20:26:47.695: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=POST + Apr 5 20:26:47.699: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST + Apr 5 20:26:47.699: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=PUT + Apr 5 20:26:47.703: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT + Apr 5 20:26:47.703: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=DELETE + Apr 5 20:26:47.709: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE + Apr 5 20:26:47.709: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=OPTIONS + Apr 5 20:26:47.715: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS + Apr 5 20:26:47.715: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=PATCH + Apr 5 20:26:47.721: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH + Apr 5 20:26:47.722: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=POST + Apr 5 20:26:47.727: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST + Apr 5 20:26:47.727: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=PUT + Apr 5 20:26:47.732: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT + Apr 5 20:26:47.732: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=GET + Apr 5 20:26:47.736: INFO: http.Client request:GET StatusCode:301 + Apr 5 20:26:47.736: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=GET + Apr 5 20:26:47.741: INFO: http.Client request:GET StatusCode:301 + Apr 5 20:26:47.741: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/pods/agnhost/proxy?method=HEAD + Apr 5 20:26:47.744: INFO: http.Client request:HEAD StatusCode:301 + Apr 5 20:26:47.744: INFO: Starting http.Client for https://10.128.0.1:443/api/v1/namespaces/proxy-5166/services/e2e-proxy-test-service/proxy?method=HEAD + Apr 5 20:26:47.750: INFO: http.Client request:HEAD StatusCode:301 + [AfterEach] version v1 + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:47.751: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] version v1 + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] version v1 + dump namespaces | framework.go:196 + [DeferCleanup (Each)] version v1 + tear down framework | framework.go:193 + STEP: Destroying namespace "proxy-5166" for this suite. 04/05/23 20:26:47.757 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:145 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:47.781 +Apr 5 20:26:47.781: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:26:47.782 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:47.802 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:47.806 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:145 +Apr 5 20:26:47.809: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:48.372: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "custom-resource-definition-6071" for this suite. 04/05/23 20:26:48.381 +------------------------------ +• [0.609 seconds] +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + Simple CustomResourceDefinition + test/e2e/apimachinery/custom_resource_definition.go:50 + getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:145 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:47.781 + Apr 5 20:26:47.781: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename custom-resource-definition 04/05/23 20:26:47.782 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:47.802 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:47.806 + [BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/apimachinery/custom_resource_definition.go:145 + Apr 5 20:26:47.809: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:48.372: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "custom-resource-definition-6071" for this suite. 04/05/23 20:26:48.381 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[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/common/storage/secrets_volume.go:99 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:48.391 +Apr 5 20:26:48.391: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:26:48.392 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:48.408 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:48.41 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[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/common/storage/secrets_volume.go:99 +STEP: Creating secret with name secret-test-f68db82d-62b5-4ad1-9d52-eeb842d51032 04/05/23 20:26:48.438 +STEP: Creating a pod to test consume secrets 04/05/23 20:26:48.443 +Apr 5 20:26:48.450: INFO: Waiting up to 5m0s for pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9" in namespace "secrets-6928" to be "Succeeded or Failed" +Apr 5 20:26:48.454: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 3.774463ms +Apr 5 20:26:50.457: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007053483s +Apr 5 20:26:52.460: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009852903s +Apr 5 20:26:54.459: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008830116s +Apr 5 20:26:56.461: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010967094s +STEP: Saw pod success 04/05/23 20:26:56.461 +Apr 5 20:26:56.462: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9" satisfied condition "Succeeded or Failed" +Apr 5 20:26:56.466: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 container secret-volume-test: +STEP: delete the pod 04/05/23 20:26:56.473 +Apr 5 20:26:56.486: INFO: Waiting for pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 to disappear +Apr 5 20:26:56.489: INFO: Pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:26:56.490: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-6928" for this suite. 04/05/23 20:26:56.495 +STEP: Destroying namespace "secret-namespace-6142" for this suite. 04/05/23 20:26:56.502 +------------------------------ +• [SLOW TEST] [8.122 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/common/storage/secrets_volume.go:99 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:48.391 + Apr 5 20:26:48.391: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:26:48.392 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:48.408 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:48.41 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [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/common/storage/secrets_volume.go:99 + STEP: Creating secret with name secret-test-f68db82d-62b5-4ad1-9d52-eeb842d51032 04/05/23 20:26:48.438 + STEP: Creating a pod to test consume secrets 04/05/23 20:26:48.443 + Apr 5 20:26:48.450: INFO: Waiting up to 5m0s for pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9" in namespace "secrets-6928" to be "Succeeded or Failed" + Apr 5 20:26:48.454: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 3.774463ms + Apr 5 20:26:50.457: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007053483s + Apr 5 20:26:52.460: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009852903s + Apr 5 20:26:54.459: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008830116s + Apr 5 20:26:56.461: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.010967094s + STEP: Saw pod success 04/05/23 20:26:56.461 + Apr 5 20:26:56.462: INFO: Pod "pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9" satisfied condition "Succeeded or Failed" + Apr 5 20:26:56.466: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 container secret-volume-test: + STEP: delete the pod 04/05/23 20:26:56.473 + Apr 5 20:26:56.486: INFO: Waiting for pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 to disappear + Apr 5 20:26:56.489: INFO: Pod pod-secrets-4c62f66a-0676-42e3-8caa-10a6e25c5eb9 no longer exists + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:26:56.490: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-6928" for this suite. 04/05/23 20:26:56.495 + STEP: Destroying namespace "secret-namespace-6142" for this suite. 04/05/23 20:26:56.502 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] Security Context When creating a container with runAsUser + should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:347 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:26:56.517 +Apr 5 20:26:56.517: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context-test 04/05/23 20:26:56.518 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:56.534 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:56.536 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 +[It] should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:347 +Apr 5 20:26:56.546: INFO: Waiting up to 5m0s for pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6" in namespace "security-context-test-1302" to be "Succeeded or Failed" +Apr 5 20:26:56.550: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.843329ms +Apr 5 20:26:58.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008581572s +Apr 5 20:27:00.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008492099s +Apr 5 20:27:02.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009026905s +Apr 5 20:27:04.556: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009821328s +Apr 5 20:27:04.556: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 20:27:04.556: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-test-1302" for this suite. 04/05/23 20:27:04.562 +------------------------------ +• [SLOW TEST] [8.052 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:309 + should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:347 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:26:56.517 + Apr 5 20:26:56.517: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context-test 04/05/23 20:26:56.518 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:26:56.534 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:26:56.536 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 + [It] should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:347 + Apr 5 20:26:56.546: INFO: Waiting up to 5m0s for pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6" in namespace "security-context-test-1302" to be "Succeeded or Failed" + Apr 5 20:26:56.550: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 3.843329ms + Apr 5 20:26:58.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008581572s + Apr 5 20:27:00.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008492099s + Apr 5 20:27:02.555: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.009026905s + Apr 5 20:27:04.556: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009821328s + Apr 5 20:27:04.556: INFO: Pod "busybox-user-65534-083b4f29-6a5e-4951-a18a-61bbd4a7eda6" satisfied condition "Succeeded or Failed" + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 20:27:04.556: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-test-1302" for this suite. 04/05/23 20:27:04.562 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with downward pod [Conformance] + test/e2e/storage/subpath.go:92 +[BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:27:04.572 +Apr 5 20:27:04.572: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename subpath 04/05/23 20:27:04.573 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:04.587 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:04.59 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data 04/05/23 20:27:04.594 +[It] should support subpaths with downward pod [Conformance] + test/e2e/storage/subpath.go:92 +STEP: Creating pod pod-subpath-test-downwardapi-bsfh 04/05/23 20:27:04.603 +STEP: Creating a pod to test atomic-volume-subpath 04/05/23 20:27:04.603 +Apr 5 20:27:04.613: INFO: Waiting up to 5m0s for pod "pod-subpath-test-downwardapi-bsfh" in namespace "subpath-1398" to be "Succeeded or Failed" +Apr 5 20:27:04.620: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 6.254407ms +Apr 5 20:27:06.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011209491s +Apr 5 20:27:08.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011511037s +Apr 5 20:27:10.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 6.011487244s +Apr 5 20:27:12.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 8.011783399s +Apr 5 20:27:14.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 10.010375994s +Apr 5 20:27:16.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 12.010354806s +Apr 5 20:27:18.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 14.010773805s +Apr 5 20:27:20.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 16.010175233s +Apr 5 20:27:22.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 18.011332879s +Apr 5 20:27:24.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 20.010645735s +Apr 5 20:27:26.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 22.010905915s +Apr 5 20:27:28.626: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 24.012389691s +Apr 5 20:27:30.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=false. Elapsed: 26.010848535s +Apr 5 20:27:32.638: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.024456559s +STEP: Saw pod success 04/05/23 20:27:32.638 +Apr 5 20:27:32.638: INFO: Pod "pod-subpath-test-downwardapi-bsfh" satisfied condition "Succeeded or Failed" +Apr 5 20:27:32.642: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-downwardapi-bsfh container test-container-subpath-downwardapi-bsfh: +STEP: delete the pod 04/05/23 20:27:32.65 +Apr 5 20:27:32.664: INFO: Waiting for pod pod-subpath-test-downwardapi-bsfh to disappear +Apr 5 20:27:32.667: INFO: Pod pod-subpath-test-downwardapi-bsfh no longer exists +STEP: Deleting pod pod-subpath-test-downwardapi-bsfh 04/05/23 20:27:32.667 +Apr 5 20:27:32.667: INFO: Deleting pod "pod-subpath-test-downwardapi-bsfh" in namespace "subpath-1398" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 +Apr 5 20:27:32.672: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 +STEP: Destroying namespace "subpath-1398" for this suite. 04/05/23 20:27:32.677 +------------------------------ +• [SLOW TEST] [28.113 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/storage/subpath.go:92 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Subpath + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:27:04.572 + Apr 5 20:27:04.572: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename subpath 04/05/23 20:27:04.573 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:04.587 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:04.59 + [BeforeEach] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 + STEP: Setting up data 04/05/23 20:27:04.594 + [It] should support subpaths with downward pod [Conformance] + test/e2e/storage/subpath.go:92 + STEP: Creating pod pod-subpath-test-downwardapi-bsfh 04/05/23 20:27:04.603 + STEP: Creating a pod to test atomic-volume-subpath 04/05/23 20:27:04.603 + Apr 5 20:27:04.613: INFO: Waiting up to 5m0s for pod "pod-subpath-test-downwardapi-bsfh" in namespace "subpath-1398" to be "Succeeded or Failed" + Apr 5 20:27:04.620: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 6.254407ms + Apr 5 20:27:06.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011209491s + Apr 5 20:27:08.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011511037s + Apr 5 20:27:10.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 6.011487244s + Apr 5 20:27:12.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 8.011783399s + Apr 5 20:27:14.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 10.010375994s + Apr 5 20:27:16.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 12.010354806s + Apr 5 20:27:18.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 14.010773805s + Apr 5 20:27:20.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 16.010175233s + Apr 5 20:27:22.625: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 18.011332879s + Apr 5 20:27:24.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 20.010645735s + Apr 5 20:27:26.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 22.010905915s + Apr 5 20:27:28.626: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=true. Elapsed: 24.012389691s + Apr 5 20:27:30.624: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Running", Reason="", readiness=false. Elapsed: 26.010848535s + Apr 5 20:27:32.638: INFO: Pod "pod-subpath-test-downwardapi-bsfh": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.024456559s + STEP: Saw pod success 04/05/23 20:27:32.638 + Apr 5 20:27:32.638: INFO: Pod "pod-subpath-test-downwardapi-bsfh" satisfied condition "Succeeded or Failed" + Apr 5 20:27:32.642: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-subpath-test-downwardapi-bsfh container test-container-subpath-downwardapi-bsfh: + STEP: delete the pod 04/05/23 20:27:32.65 + Apr 5 20:27:32.664: INFO: Waiting for pod pod-subpath-test-downwardapi-bsfh to disappear + Apr 5 20:27:32.667: INFO: Pod pod-subpath-test-downwardapi-bsfh no longer exists + STEP: Deleting pod pod-subpath-test-downwardapi-bsfh 04/05/23 20:27:32.667 + Apr 5 20:27:32.667: INFO: Deleting pod "pod-subpath-test-downwardapi-bsfh" in namespace "subpath-1398" + [AfterEach] [sig-storage] Subpath + test/e2e/framework/node/init/init.go:32 + Apr 5 20:27:32.672: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Subpath + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Subpath + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Subpath + tear down framework | framework.go:193 + STEP: Destroying namespace "subpath-1398" for this suite. 04/05/23 20:27:32.677 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:68 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:27:32.685 +Apr 5 20:27:32.685: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:27:32.686 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:32.701 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:32.704 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:68 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:27:32.707 +Apr 5 20:27:32.716: INFO: Waiting up to 5m0s for pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d" in namespace "projected-3090" to be "Succeeded or Failed" +Apr 5 20:27:32.719: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 3.147218ms +Apr 5 20:27:34.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007394043s +Apr 5 20:27:36.725: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00892865s +Apr 5 20:27:38.725: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008711657s +Apr 5 20:27:40.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007304695s +STEP: Saw pod success 04/05/23 20:27:40.723 +Apr 5 20:27:40.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d" satisfied condition "Succeeded or Failed" +Apr 5 20:27:40.727: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d container client-container: +STEP: delete the pod 04/05/23 20:27:40.733 +Apr 5 20:27:40.745: INFO: Waiting for pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d to disappear +Apr 5 20:27:40.750: INFO: Pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 20:27:40.751: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-3090" for this suite. 04/05/23 20:27:40.756 +------------------------------ +• [SLOW TEST] [8.076 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:68 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:27:32.685 + Apr 5 20:27:32.685: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:27:32.686 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:32.701 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:32.704 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:68 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:27:32.707 + Apr 5 20:27:32.716: INFO: Waiting up to 5m0s for pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d" in namespace "projected-3090" to be "Succeeded or Failed" + Apr 5 20:27:32.719: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 3.147218ms + Apr 5 20:27:34.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007394043s + Apr 5 20:27:36.725: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00892865s + Apr 5 20:27:38.725: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008711657s + Apr 5 20:27:40.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007304695s + STEP: Saw pod success 04/05/23 20:27:40.723 + Apr 5 20:27:40.723: INFO: Pod "downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d" satisfied condition "Succeeded or Failed" + Apr 5 20:27:40.727: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d container client-container: + STEP: delete the pod 04/05/23 20:27:40.733 + Apr 5 20:27:40.745: INFO: Waiting for pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d to disappear + Apr 5 20:27:40.750: INFO: Pod downwardapi-volume-7d001d19-13a6-4715-bb61-ca0453071e0d no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 20:27:40.751: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-3090" for this suite. 04/05/23 20:27:40.756 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of same group but different versions [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:309 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:27:40.77 +Apr 5 20:27:40.770: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 20:27:40.771 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:40.785 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:40.789 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] works for multiple CRDs of same group but different versions [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:309 +STEP: CRs in the same group but different versions (one multiversion CRD) show up in OpenAPI documentation 04/05/23 20:27:40.792 +Apr 5 20:27:40.793: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: CRs in the same group but different versions (two CRDs) show up in OpenAPI documentation 04/05/23 20:27:54.675 +Apr 5 20:27:54.676: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:27:58.472: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:12.137: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-publish-openapi-4661" for this suite. 04/05/23 20:28:12.149 +------------------------------ +• [SLOW TEST] [31.387 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/apimachinery/crd_publish_openapi.go:309 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:27:40.77 + Apr 5 20:27:40.770: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-publish-openapi 04/05/23 20:27:40.771 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:27:40.785 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:27:40.789 + [BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] works for multiple CRDs of same group but different versions [Conformance] + test/e2e/apimachinery/crd_publish_openapi.go:309 + STEP: CRs in the same group but different versions (one multiversion CRD) show up in OpenAPI documentation 04/05/23 20:27:40.792 + Apr 5 20:27:40.793: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: CRs in the same group but different versions (two CRDs) show up in OpenAPI documentation 04/05/23 20:27:54.675 + Apr 5 20:27:54.676: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:27:58.472: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + [AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:12.137: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-publish-openapi-4661" for this suite. 04/05/23 20:28:12.149 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] Certificates API [Privileged:ClusterAdmin] + should support CSR API operations [Conformance] + test/e2e/auth/certificates.go:200 +[BeforeEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:12.16 +Apr 5 20:28:12.160: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename certificates 04/05/23 20:28:12.161 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:12.179 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:12.182 +[BeforeEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[It] should support CSR API operations [Conformance] + test/e2e/auth/certificates.go:200 +STEP: getting /apis 04/05/23 20:28:12.768 +STEP: getting /apis/certificates.k8s.io 04/05/23 20:28:12.771 +STEP: getting /apis/certificates.k8s.io/v1 04/05/23 20:28:12.772 +STEP: creating 04/05/23 20:28:12.773 +STEP: getting 04/05/23 20:28:12.792 +STEP: listing 04/05/23 20:28:12.796 +STEP: watching 04/05/23 20:28:12.8 +Apr 5 20:28:12.801: INFO: starting watch +STEP: patching 04/05/23 20:28:12.802 +STEP: updating 04/05/23 20:28:12.81 +Apr 5 20:28:12.817: INFO: waiting for watch events with expected annotations +Apr 5 20:28:12.817: INFO: saw patched and updated annotations +STEP: getting /approval 04/05/23 20:28:12.817 +STEP: patching /approval 04/05/23 20:28:12.821 +STEP: updating /approval 04/05/23 20:28:12.827 +STEP: getting /status 04/05/23 20:28:12.835 +STEP: patching /status 04/05/23 20:28:12.838 +STEP: updating /status 04/05/23 20:28:12.846 +STEP: deleting 04/05/23 20:28:12.854 +STEP: deleting a collection 04/05/23 20:28:12.866 +[AfterEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:12.883: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "certificates-411" for this suite. 04/05/23 20:28:12.889 +------------------------------ +• [0.736 seconds] +[sig-auth] Certificates API [Privileged:ClusterAdmin] +test/e2e/auth/framework.go:23 + should support CSR API operations [Conformance] + test/e2e/auth/certificates.go:200 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:12.16 + Apr 5 20:28:12.160: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename certificates 04/05/23 20:28:12.161 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:12.179 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:12.182 + [BeforeEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [It] should support CSR API operations [Conformance] + test/e2e/auth/certificates.go:200 + STEP: getting /apis 04/05/23 20:28:12.768 + STEP: getting /apis/certificates.k8s.io 04/05/23 20:28:12.771 + STEP: getting /apis/certificates.k8s.io/v1 04/05/23 20:28:12.772 + STEP: creating 04/05/23 20:28:12.773 + STEP: getting 04/05/23 20:28:12.792 + STEP: listing 04/05/23 20:28:12.796 + STEP: watching 04/05/23 20:28:12.8 + Apr 5 20:28:12.801: INFO: starting watch + STEP: patching 04/05/23 20:28:12.802 + STEP: updating 04/05/23 20:28:12.81 + Apr 5 20:28:12.817: INFO: waiting for watch events with expected annotations + Apr 5 20:28:12.817: INFO: saw patched and updated annotations + STEP: getting /approval 04/05/23 20:28:12.817 + STEP: patching /approval 04/05/23 20:28:12.821 + STEP: updating /approval 04/05/23 20:28:12.827 + STEP: getting /status 04/05/23 20:28:12.835 + STEP: patching /status 04/05/23 20:28:12.838 + STEP: updating /status 04/05/23 20:28:12.846 + STEP: deleting 04/05/23 20:28:12.854 + STEP: deleting a collection 04/05/23 20:28:12.866 + [AfterEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:12.883: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-auth] Certificates API [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "certificates-411" for this suite. 04/05/23 20:28:12.889 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/network/dns.go:117 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:12.899 +Apr 5 20:28:12.899: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 20:28:12.9 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:12.916 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:12.918 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/network/dns.go:117 +STEP: Running these commands on wheezy: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-237.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-1.dns-test-service.dns-237.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/wheezy_hosts@dns-querier-1;sleep 1; done + 04/05/23 20:28:12.921 +STEP: Running these commands on jessie: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-237.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-1.dns-test-service.dns-237.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/jessie_hosts@dns-querier-1;sleep 1; done + 04/05/23 20:28:12.922 +STEP: creating a pod to probe /etc/hosts 04/05/23 20:28:12.922 +STEP: submitting the pod to kubernetes 04/05/23 20:28:12.922 +Apr 5 20:28:12.932: INFO: Waiting up to 15m0s for pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398" in namespace "dns-237" to be "running" +Apr 5 20:28:12.935: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 3.485386ms +Apr 5 20:28:14.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008099063s +Apr 5 20:28:16.941: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009211942s +Apr 5 20:28:18.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Running", Reason="", readiness=true. Elapsed: 6.007914834s +Apr 5 20:28:18.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398" satisfied condition "running" +STEP: retrieving the pod 04/05/23 20:28:18.94 +STEP: looking for the results for each expected name from probers 04/05/23 20:28:18.943 +Apr 5 20:28:18.961: INFO: DNS probes using dns-237/dns-test-639a9f5c-f418-4249-b1db-672f452de398 succeeded + +STEP: deleting the pod 04/05/23 20:28:18.961 +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:18.974: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-237" for this suite. 04/05/23 20:28:18.985 +------------------------------ +• [SLOW TEST] [6.092 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/network/dns.go:117 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:12.899 + Apr 5 20:28:12.899: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 20:28:12.9 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:12.916 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:12.918 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/network/dns.go:117 + STEP: Running these commands on wheezy: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-237.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-1.dns-test-service.dns-237.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/wheezy_hosts@dns-querier-1;sleep 1; done + 04/05/23 20:28:12.921 + STEP: Running these commands on jessie: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-237.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-1.dns-test-service.dns-237.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/jessie_hosts@dns-querier-1;sleep 1; done + 04/05/23 20:28:12.922 + STEP: creating a pod to probe /etc/hosts 04/05/23 20:28:12.922 + STEP: submitting the pod to kubernetes 04/05/23 20:28:12.922 + Apr 5 20:28:12.932: INFO: Waiting up to 15m0s for pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398" in namespace "dns-237" to be "running" + Apr 5 20:28:12.935: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 3.485386ms + Apr 5 20:28:14.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008099063s + Apr 5 20:28:16.941: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009211942s + Apr 5 20:28:18.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398": Phase="Running", Reason="", readiness=true. Elapsed: 6.007914834s + Apr 5 20:28:18.940: INFO: Pod "dns-test-639a9f5c-f418-4249-b1db-672f452de398" satisfied condition "running" + STEP: retrieving the pod 04/05/23 20:28:18.94 + STEP: looking for the results for each expected name from probers 04/05/23 20:28:18.943 + Apr 5 20:28:18.961: INFO: DNS probes using dns-237/dns-test-639a9f5c-f418-4249-b1db-672f452de398 succeeded + + STEP: deleting the pod 04/05/23 20:28:18.961 + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:18.974: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-237" for this suite. 04/05/23 20:28:18.985 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-cli] Kubectl client Proxy server + should support --unix-socket=/path [Conformance] + test/e2e/kubectl/kubectl.go:1812 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:18.997 +Apr 5 20:28:18.998: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:28:19 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:19.019 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:19.023 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should support --unix-socket=/path [Conformance] + test/e2e/kubectl/kubectl.go:1812 +STEP: Starting the proxy 04/05/23 20:28:19.026 +Apr 5 20:28:19.027: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9899 proxy --unix-socket=/tmp/kubectl-proxy-unix3139581611/test' +STEP: retrieving proxy /api/ output 04/05/23 20:28:19.088 +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:19.089: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-9899" for this suite. 04/05/23 20:28:19.095 +------------------------------ +• [0.106 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Proxy server + test/e2e/kubectl/kubectl.go:1780 + should support --unix-socket=/path [Conformance] + test/e2e/kubectl/kubectl.go:1812 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:18.997 + Apr 5 20:28:18.998: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:28:19 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:19.019 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:19.023 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should support --unix-socket=/path [Conformance] + test/e2e/kubectl/kubectl.go:1812 + STEP: Starting the proxy 04/05/23 20:28:19.026 + Apr 5 20:28:19.027: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-9899 proxy --unix-socket=/tmp/kubectl-proxy-unix3139581611/test' + STEP: retrieving proxy /api/ output 04/05/23 20:28:19.088 + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:19.089: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-9899" for this suite. 04/05/23 20:28:19.095 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command in a pod + should print the output to logs [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:52 +[BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:19.104 +Apr 5 20:28:19.104: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubelet-test 04/05/23 20:28:19.106 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:19.123 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:19.126 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 +[It] should print the output to logs [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:52 +Apr 5 20:28:19.139: INFO: Waiting up to 5m0s for pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632" in namespace "kubelet-test-5437" to be "running and ready" +Apr 5 20:28:19.143: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 3.584921ms +Apr 5 20:28:19.143: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:28:21.150: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010556787s +Apr 5 20:28:21.150: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:28:23.148: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008613907s +Apr 5 20:28:23.148: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:28:25.149: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Running", Reason="", readiness=true. Elapsed: 6.009654279s +Apr 5 20:28:25.149: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Running (Ready = true) +Apr 5 20:28:25.149: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632" satisfied condition "running and ready" +[AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:25.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 +STEP: Destroying namespace "kubelet-test-5437" for this suite. 04/05/23 20:28:25.172 +------------------------------ +• [SLOW TEST] [6.075 seconds] +[sig-node] Kubelet +test/e2e/common/node/framework.go:23 + when scheduling a busybox command in a pod + test/e2e/common/node/kubelet.go:44 + should print the output to logs [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:52 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Kubelet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:19.104 + Apr 5 20:28:19.104: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubelet-test 04/05/23 20:28:19.106 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:19.123 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:19.126 + [BeforeEach] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:41 + [It] should print the output to logs [NodeConformance] [Conformance] + test/e2e/common/node/kubelet.go:52 + Apr 5 20:28:19.139: INFO: Waiting up to 5m0s for pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632" in namespace "kubelet-test-5437" to be "running and ready" + Apr 5 20:28:19.143: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 3.584921ms + Apr 5 20:28:19.143: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:28:21.150: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010556787s + Apr 5 20:28:21.150: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:28:23.148: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008613907s + Apr 5 20:28:23.148: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:28:25.149: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632": Phase="Running", Reason="", readiness=true. Elapsed: 6.009654279s + Apr 5 20:28:25.149: INFO: The phase of Pod busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632 is Running (Ready = true) + Apr 5 20:28:25.149: INFO: Pod "busybox-scheduling-f52aa0a5-04a1-4a49-9f29-0bec01fa3632" satisfied condition "running and ready" + [AfterEach] [sig-node] Kubelet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:25.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Kubelet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Kubelet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Kubelet + tear down framework | framework.go:193 + STEP: Destroying namespace "kubelet-test-5437" for this suite. 04/05/23 20:28:25.172 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should complete a service status lifecycle [Conformance] + test/e2e/network/service.go:3428 +[BeforeEach] [sig-network] Services + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:25.187 +Apr 5 20:28:25.187: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename services 04/05/23 20:28:25.188 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:25.208 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:25.211 +[BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 +[It] should complete a service status lifecycle [Conformance] + test/e2e/network/service.go:3428 +STEP: creating a Service 04/05/23 20:28:25.218 +STEP: watching for the Service to be added 04/05/23 20:28:25.237 +Apr 5 20:28:25.239: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] & ports [{http TCP 80 {0 80 } 0}] +Apr 5 20:28:25.239: INFO: Service test-service-hvpk2 created +STEP: Getting /status 04/05/23 20:28:25.24 +Apr 5 20:28:25.244: INFO: Service test-service-hvpk2 has LoadBalancer: {[]} +STEP: patching the ServiceStatus 04/05/23 20:28:25.245 +STEP: watching for the Service to be patched 04/05/23 20:28:25.253 +Apr 5 20:28:25.254: INFO: observed Service test-service-hvpk2 in namespace services-9870 with annotations: map[] & LoadBalancer: {[]} +Apr 5 20:28:25.255: INFO: Found Service test-service-hvpk2 in namespace services-9870 with annotations: map[patchedstatus:true] & LoadBalancer: {[{203.0.113.1 []}]} +Apr 5 20:28:25.255: INFO: Service test-service-hvpk2 has service status patched +STEP: updating the ServiceStatus 04/05/23 20:28:25.256 +Apr 5 20:28:25.266: 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 04/05/23 20:28:25.267 +Apr 5 20:28:25.268: INFO: Observed Service test-service-hvpk2 in namespace services-9870 with annotations: map[] & Conditions: {[]} +Apr 5 20:28:25.269: INFO: Observed event: &Service{ObjectMeta:{test-service-hvpk2 services-9870 c0e3891a-5973-43fa-b4c7-da5ac76b8720 149982 0 2023-04-05 20:28:25 +0000 UTC map[test-service-static:true] map[patchedstatus:true] [] [] [{e2e.test Update v1 2023-04-05 20:28:25 +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 2023-04-05 20:28:25 +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:10.137.187.233,Type:ClusterIP,ExternalIPs:[],SessionAffinity:None,LoadBalancerIP:,LoadBalancerSourceRanges:[],ExternalName:,ExternalTrafficPolicy:,HealthCheckNodePort:0,PublishNotReadyAddresses:false,SessionAffinityConfig:nil,IPFamilyPolicy:*SingleStack,ClusterIPs:[10.137.187.233],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{},},} +Apr 5 20:28:25.269: INFO: Found Service test-service-hvpk2 in namespace services-9870 with annotations: map[patchedstatus:true] & Conditions: [{StatusUpdate True 0 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Apr 5 20:28:25.269: INFO: Service test-service-hvpk2 has service status updated +STEP: patching the service 04/05/23 20:28:25.27 +STEP: watching for the Service to be patched 04/05/23 20:28:25.285 +Apr 5 20:28:25.287: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] +Apr 5 20:28:25.287: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] +Apr 5 20:28:25.288: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] +Apr 5 20:28:25.288: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service:patched test-service-static:true] +Apr 5 20:28:25.288: INFO: Service test-service-hvpk2 patched +STEP: deleting the service 04/05/23 20:28:25.288 +STEP: watching for the Service to be deleted 04/05/23 20:28:25.307 +Apr 5 20:28:25.309: INFO: Observed event: ADDED +Apr 5 20:28:25.310: INFO: Observed event: MODIFIED +Apr 5 20:28:25.310: INFO: Observed event: MODIFIED +Apr 5 20:28:25.310: INFO: Observed event: MODIFIED +Apr 5 20:28:25.310: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service:patched test-service-static:true] & annotations: map[patchedstatus:true] +Apr 5 20:28:25.311: INFO: Service test-service-hvpk2 deleted +[AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:25.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 +STEP: Destroying namespace "services-9870" for this suite. 04/05/23 20:28:25.317 +------------------------------ +• [0.137 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should complete a service status lifecycle [Conformance] + test/e2e/network/service.go:3428 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Services + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:25.187 + Apr 5 20:28:25.187: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename services 04/05/23 20:28:25.188 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:25.208 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:25.211 + [BeforeEach] [sig-network] Services + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-network] Services + test/e2e/network/service.go:766 + [It] should complete a service status lifecycle [Conformance] + test/e2e/network/service.go:3428 + STEP: creating a Service 04/05/23 20:28:25.218 + STEP: watching for the Service to be added 04/05/23 20:28:25.237 + Apr 5 20:28:25.239: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] & ports [{http TCP 80 {0 80 } 0}] + Apr 5 20:28:25.239: INFO: Service test-service-hvpk2 created + STEP: Getting /status 04/05/23 20:28:25.24 + Apr 5 20:28:25.244: INFO: Service test-service-hvpk2 has LoadBalancer: {[]} + STEP: patching the ServiceStatus 04/05/23 20:28:25.245 + STEP: watching for the Service to be patched 04/05/23 20:28:25.253 + Apr 5 20:28:25.254: INFO: observed Service test-service-hvpk2 in namespace services-9870 with annotations: map[] & LoadBalancer: {[]} + Apr 5 20:28:25.255: INFO: Found Service test-service-hvpk2 in namespace services-9870 with annotations: map[patchedstatus:true] & LoadBalancer: {[{203.0.113.1 []}]} + Apr 5 20:28:25.255: INFO: Service test-service-hvpk2 has service status patched + STEP: updating the ServiceStatus 04/05/23 20:28:25.256 + Apr 5 20:28:25.266: 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 04/05/23 20:28:25.267 + Apr 5 20:28:25.268: INFO: Observed Service test-service-hvpk2 in namespace services-9870 with annotations: map[] & Conditions: {[]} + Apr 5 20:28:25.269: INFO: Observed event: &Service{ObjectMeta:{test-service-hvpk2 services-9870 c0e3891a-5973-43fa-b4c7-da5ac76b8720 149982 0 2023-04-05 20:28:25 +0000 UTC map[test-service-static:true] map[patchedstatus:true] [] [] [{e2e.test Update v1 2023-04-05 20:28:25 +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 2023-04-05 20:28:25 +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:10.137.187.233,Type:ClusterIP,ExternalIPs:[],SessionAffinity:None,LoadBalancerIP:,LoadBalancerSourceRanges:[],ExternalName:,ExternalTrafficPolicy:,HealthCheckNodePort:0,PublishNotReadyAddresses:false,SessionAffinityConfig:nil,IPFamilyPolicy:*SingleStack,ClusterIPs:[10.137.187.233],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{},},} + Apr 5 20:28:25.269: INFO: Found Service test-service-hvpk2 in namespace services-9870 with annotations: map[patchedstatus:true] & Conditions: [{StatusUpdate True 0 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] + Apr 5 20:28:25.269: INFO: Service test-service-hvpk2 has service status updated + STEP: patching the service 04/05/23 20:28:25.27 + STEP: watching for the Service to be patched 04/05/23 20:28:25.285 + Apr 5 20:28:25.287: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] + Apr 5 20:28:25.287: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] + Apr 5 20:28:25.288: INFO: observed Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service-static:true] + Apr 5 20:28:25.288: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service:patched test-service-static:true] + Apr 5 20:28:25.288: INFO: Service test-service-hvpk2 patched + STEP: deleting the service 04/05/23 20:28:25.288 + STEP: watching for the Service to be deleted 04/05/23 20:28:25.307 + Apr 5 20:28:25.309: INFO: Observed event: ADDED + Apr 5 20:28:25.310: INFO: Observed event: MODIFIED + Apr 5 20:28:25.310: INFO: Observed event: MODIFIED + Apr 5 20:28:25.310: INFO: Observed event: MODIFIED + Apr 5 20:28:25.310: INFO: Found Service test-service-hvpk2 in namespace services-9870 with labels: map[test-service:patched test-service-static:true] & annotations: map[patchedstatus:true] + Apr 5 20:28:25.311: INFO: Service test-service-hvpk2 deleted + [AfterEach] [sig-network] Services + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:25.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Services + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Services + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Services + tear down framework | framework.go:193 + STEP: Destroying namespace "services-9870" for this suite. 04/05/23 20:28:25.317 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + should be able to convert a non homogeneous list of CRs [Conformance] + test/e2e/apimachinery/crd_conversion_webhook.go:184 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:25.337 +Apr 5 20:28:25.337: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename crd-webhook 04/05/23 20:28:25.338 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:25.378 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:25.381 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 +STEP: Setting up server cert 04/05/23 20:28:25.385 +STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication 04/05/23 20:28:25.749 +STEP: Deploying the custom resource conversion webhook pod 04/05/23 20:28:25.758 +STEP: Wait for the deployment to be ready 04/05/23 20:28:25.773 +Apr 5 20:28:25.780: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set +Apr 5 20:28:27.792: 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(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +Apr 5 20:28:29.797: 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(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service 04/05/23 20:28:31.797 +STEP: Verifying the service has paired with the endpoint 04/05/23 20:28:31.815 +Apr 5 20:28:32.816: 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/apimachinery/crd_conversion_webhook.go:184 +Apr 5 20:28:32.821: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Creating a v1 custom resource 04/05/23 20:28:35.465 +STEP: Create a v2 custom resource 04/05/23 20:28:35.49 +STEP: List CRs in v1 04/05/23 20:28:35.554 +STEP: List CRs in v2 04/05/23 20:28:35.56 +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:36.078: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 +STEP: Destroying namespace "crd-webhook-4783" for this suite. 04/05/23 20:28:36.162 +------------------------------ +• [SLOW TEST] [10.833 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/apimachinery/crd_conversion_webhook.go:184 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:25.337 + Apr 5 20:28:25.337: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename crd-webhook 04/05/23 20:28:25.338 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:25.378 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:25.381 + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 + STEP: Setting up server cert 04/05/23 20:28:25.385 + STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication 04/05/23 20:28:25.749 + STEP: Deploying the custom resource conversion webhook pod 04/05/23 20:28:25.758 + STEP: Wait for the deployment to be ready 04/05/23 20:28:25.773 + Apr 5 20:28:25.780: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set + Apr 5 20:28:27.792: 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(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + Apr 5 20:28:29.797: 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(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), LastTransitionTime:time.Date(2023, time.April, 5, 20, 28, 25, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-74ff66dd47\" is progressing."}}, CollisionCount:(*int32)(nil)} + STEP: Deploying the webhook service 04/05/23 20:28:31.797 + STEP: Verifying the service has paired with the endpoint 04/05/23 20:28:31.815 + Apr 5 20:28:32.816: 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/apimachinery/crd_conversion_webhook.go:184 + Apr 5 20:28:32.821: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Creating a v1 custom resource 04/05/23 20:28:35.465 + STEP: Create a v2 custom resource 04/05/23 20:28:35.49 + STEP: List CRs in v1 04/05/23 20:28:35.554 + STEP: List CRs in v2 04/05/23 20:28:35.56 + [AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:36.078: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + tear down framework | framework.go:193 + STEP: Destroying namespace "crd-webhook-4783" for this suite. 04/05/23 20:28:36.162 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:87 +[BeforeEach] [sig-node] Containers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:36.182 +Apr 5 20:28:36.182: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename containers 04/05/23 20:28:36.183 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:36.21 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:36.214 +[BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 +[It] should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:87 +STEP: Creating a pod to test override all 04/05/23 20:28:36.218 +Apr 5 20:28:36.227: INFO: Waiting up to 5m0s for pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc" in namespace "containers-6638" to be "Succeeded or Failed" +Apr 5 20:28:36.230: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.875405ms +Apr 5 20:28:38.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009110891s +Apr 5 20:28:40.235: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007800348s +Apr 5 20:28:42.235: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007473249s +Apr 5 20:28:44.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009705407s +STEP: Saw pod success 04/05/23 20:28:44.237 +Apr 5 20:28:44.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc" satisfied condition "Succeeded or Failed" +Apr 5 20:28:44.241: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc container agnhost-container: +STEP: delete the pod 04/05/23 20:28:44.248 +Apr 5 20:28:44.262: INFO: Waiting for pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc to disappear +Apr 5 20:28:44.265: INFO: Pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:44.265: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 +STEP: Destroying namespace "containers-6638" for this suite. 04/05/23 20:28:44.27 +------------------------------ +• [SLOW TEST] [8.096 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/common/node/containers.go:87 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Containers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:36.182 + Apr 5 20:28:36.182: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename containers 04/05/23 20:28:36.183 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:36.21 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:36.214 + [BeforeEach] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:31 + [It] should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/common/node/containers.go:87 + STEP: Creating a pod to test override all 04/05/23 20:28:36.218 + Apr 5 20:28:36.227: INFO: Waiting up to 5m0s for pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc" in namespace "containers-6638" to be "Succeeded or Failed" + Apr 5 20:28:36.230: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.875405ms + Apr 5 20:28:38.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009110891s + Apr 5 20:28:40.235: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007800348s + Apr 5 20:28:42.235: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007473249s + Apr 5 20:28:44.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009705407s + STEP: Saw pod success 04/05/23 20:28:44.237 + Apr 5 20:28:44.237: INFO: Pod "client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc" satisfied condition "Succeeded or Failed" + Apr 5 20:28:44.241: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc container agnhost-container: + STEP: delete the pod 04/05/23 20:28:44.248 + Apr 5 20:28:44.262: INFO: Waiting for pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc to disappear + Apr 5 20:28:44.265: INFO: Pod client-containers-d4fc8b89-b64b-4cee-89ca-5f1793824fbc no longer exists + [AfterEach] [sig-node] Containers + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:44.265: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Containers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Containers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Containers + tear down framework | framework.go:193 + STEP: Destroying namespace "containers-6638" for this suite. 04/05/23 20:28:44.27 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/apimachinery/watch.go:257 +[BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:44.285 +Apr 5 20:28:44.285: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename watch 04/05/23 20:28:44.286 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:44.303 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:44.309 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 +[It] should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/apimachinery/watch.go:257 +STEP: creating a watch on configmaps with a certain label 04/05/23 20:28:44.313 +STEP: creating a new configmap 04/05/23 20:28:44.314 +STEP: modifying the configmap once 04/05/23 20:28:44.319 +STEP: changing the label value of the configmap 04/05/23 20:28:44.327 +STEP: Expecting to observe a delete notification for the watched object 04/05/23 20:28:44.338 +Apr 5 20:28:44.338: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150254 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Apr 5 20:28:44.338: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150255 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +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,} +Apr 5 20:28:44.338: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150256 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +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 04/05/23 20:28:44.338 +STEP: Expecting not to observe a notification because the object no longer meets the selector's requirements 04/05/23 20:28:44.366 +STEP: changing the label value of the configmap back 04/05/23 20:28:54.367 +STEP: modifying the configmap a third time 04/05/23 20:28:54.378 +STEP: deleting the configmap 04/05/23 20:28:54.387 +STEP: Expecting to observe an add notification for the watched object when the label value was restored 04/05/23 20:28:54.393 +Apr 5 20:28:54.393: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150353 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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,} +Apr 5 20:28:54.393: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150354 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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,} +Apr 5 20:28:54.394: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150355 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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/node/init/init.go:32 +Apr 5 20:28:54.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 +STEP: Destroying namespace "watch-3082" for this suite. 04/05/23 20:28:54.4 +------------------------------ +• [SLOW TEST] [10.122 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/apimachinery/watch.go:257 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:44.285 + Apr 5 20:28:44.285: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename watch 04/05/23 20:28:44.286 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:44.303 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:44.309 + [BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 + [It] should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/apimachinery/watch.go:257 + STEP: creating a watch on configmaps with a certain label 04/05/23 20:28:44.313 + STEP: creating a new configmap 04/05/23 20:28:44.314 + STEP: modifying the configmap once 04/05/23 20:28:44.319 + STEP: changing the label value of the configmap 04/05/23 20:28:44.327 + STEP: Expecting to observe a delete notification for the watched object 04/05/23 20:28:44.338 + Apr 5 20:28:44.338: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150254 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} + Apr 5 20:28:44.338: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150255 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +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,} + Apr 5 20:28:44.338: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150256 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:44 +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 04/05/23 20:28:44.338 + STEP: Expecting not to observe a notification because the object no longer meets the selector's requirements 04/05/23 20:28:44.366 + STEP: changing the label value of the configmap back 04/05/23 20:28:54.367 + STEP: modifying the configmap a third time 04/05/23 20:28:54.378 + STEP: deleting the configmap 04/05/23 20:28:54.387 + STEP: Expecting to observe an add notification for the watched object when the label value was restored 04/05/23 20:28:54.393 + Apr 5 20:28:54.393: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150353 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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,} + Apr 5 20:28:54.393: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150354 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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,} + Apr 5 20:28:54.394: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3082 65316ce6-d857-478e-801e-5e3a1bebc7e0 150355 0 2023-04-05 20:28:44 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2023-04-05 20:28:54 +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/node/init/init.go:32 + Apr 5 20:28:54.394: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 + STEP: Destroying namespace "watch-3082" for this suite. 04/05/23 20:28:54.4 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + deployment should delete old replica sets [Conformance] + test/e2e/apps/deployment.go:122 +[BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:54.413 +Apr 5 20:28:54.413: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename deployment 04/05/23 20:28:54.414 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:54.432 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:54.434 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should delete old replica sets [Conformance] + test/e2e/apps/deployment.go:122 +Apr 5 20:28:54.450: INFO: Pod name cleanup-pod: Found 0 pods out of 1 +Apr 5 20:28:59.455: INFO: Pod name cleanup-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running 04/05/23 20:28:59.455 +Apr 5 20:28:59.456: INFO: Creating deployment test-cleanup-deployment +STEP: Waiting for deployment test-cleanup-deployment history to be cleaned up 04/05/23 20:28:59.465 +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Apr 5 20:28:59.478: INFO: Deployment "test-cleanup-deployment": +&Deployment{ObjectMeta:{test-cleanup-deployment deployment-2138 dea254b1-d4d6-4580-aeaa-508d3499ebea 150428 1 2023-04-05 20:28:59 +0000 UTC map[name:cleanup-pod] map[] [] [] [{e2e.test Update apps/v1 2023-04-05 20:28:59 +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 registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc004094de8 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,},} + +Apr 5 20:28:59.481: INFO: New ReplicaSet "test-cleanup-deployment-7698ff6f6b" of Deployment "test-cleanup-deployment": +&ReplicaSet{ObjectMeta:{test-cleanup-deployment-7698ff6f6b deployment-2138 008fa7b7-3e8d-4c17-b935-f41c18494829 150430 1 2023-04-05 20:28:59 +0000 UTC map[name:cleanup-pod pod-template-hash:7698ff6f6b] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-cleanup-deployment dea254b1-d4d6-4580-aeaa-508d3499ebea 0xc0058069b7 0xc0058069b8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:28:59 +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\":\"dea254b1-d4d6-4580-aeaa-508d3499ebea\"}":{}}},"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":{}}}}} }]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: cleanup-pod,pod-template-hash: 7698ff6f6b,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:cleanup-pod pod-template-hash:7698ff6f6b] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc005806a48 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:0,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Apr 5 20:28:59.481: INFO: All old ReplicaSets of Deployment "test-cleanup-deployment": +Apr 5 20:28:59.482: INFO: &ReplicaSet{ObjectMeta:{test-cleanup-controller deployment-2138 2540e2d8-7640-45db-9171-7a747c4c10b4 150429 1 2023-04-05 20:28:54 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 Deployment test-cleanup-deployment dea254b1-d4d6-4580-aeaa-508d3499ebea 0xc005806877 0xc005806878}] [] [{e2e.test Update apps/v1 2023-04-05 20:28:54 +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 2023-04-05 20:28:58 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status} {kube-controller-manager Update apps/v1 2023-04-05 20:28:59 +0000 UTC FieldsV1 {"f:metadata":{"f:ownerReferences":{".":{},"k:{\"uid\":\"dea254b1-d4d6-4580-aeaa-508d3499ebea\"}":{}}}} }]},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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc005806938 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{},},} +Apr 5 20:28:59.489: INFO: Pod "test-cleanup-controller-92sxn" is available: +&Pod{ObjectMeta:{test-cleanup-controller-92sxn test-cleanup-controller- deployment-2138 a175f7c2-29df-440d-b2f8-d629f251fe38 150415 0 2023-04-05 20:28:54 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 ReplicaSet test-cleanup-controller 2540e2d8-7640-45db-9171-7a747c4c10b4 0xc004095107 0xc004095108}] [] [{kube-controller-manager Update v1 2023-04-05 20:28:54 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"2540e2d8-7640-45db-9171-7a747c4c10b4\"}":{}}},"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 2023-04-05 20:28:58 +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\":\"192.168.3.17\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-wq4h6,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-wq4h6,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:54 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.17,StartTime:2023-04-05 20:28:54 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:28:58 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://b46d2ba20058c6e060b7dbf36fd1378f481e9ed2bebd8b86f2cdbf12dabdbe00,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.17,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 +Apr 5 20:28:59.490: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 +STEP: Destroying namespace "deployment-2138" for this suite. 04/05/23 20:28:59.495 +------------------------------ +• [SLOW TEST] [5.094 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should delete old replica sets [Conformance] + test/e2e/apps/deployment.go:122 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Deployment + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:54.413 + Apr 5 20:28:54.413: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename deployment 04/05/23 20:28:54.414 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:54.432 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:54.434 + [BeforeEach] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 + [It] deployment should delete old replica sets [Conformance] + test/e2e/apps/deployment.go:122 + Apr 5 20:28:54.450: INFO: Pod name cleanup-pod: Found 0 pods out of 1 + Apr 5 20:28:59.455: INFO: Pod name cleanup-pod: Found 1 pods out of 1 + STEP: ensuring each pod is running 04/05/23 20:28:59.455 + Apr 5 20:28:59.456: INFO: Creating deployment test-cleanup-deployment + STEP: Waiting for deployment test-cleanup-deployment history to be cleaned up 04/05/23 20:28:59.465 + [AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 + Apr 5 20:28:59.478: INFO: Deployment "test-cleanup-deployment": + &Deployment{ObjectMeta:{test-cleanup-deployment deployment-2138 dea254b1-d4d6-4580-aeaa-508d3499ebea 150428 1 2023-04-05 20:28:59 +0000 UTC map[name:cleanup-pod] map[] [] [] [{e2e.test Update apps/v1 2023-04-05 20:28:59 +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 registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc004094de8 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,},} + + Apr 5 20:28:59.481: INFO: New ReplicaSet "test-cleanup-deployment-7698ff6f6b" of Deployment "test-cleanup-deployment": + &ReplicaSet{ObjectMeta:{test-cleanup-deployment-7698ff6f6b deployment-2138 008fa7b7-3e8d-4c17-b935-f41c18494829 150430 1 2023-04-05 20:28:59 +0000 UTC map[name:cleanup-pod pod-template-hash:7698ff6f6b] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-cleanup-deployment dea254b1-d4d6-4580-aeaa-508d3499ebea 0xc0058069b7 0xc0058069b8}] [] [{kube-controller-manager Update apps/v1 2023-04-05 20:28:59 +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\":\"dea254b1-d4d6-4580-aeaa-508d3499ebea\"}":{}}},"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":{}}}}} }]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: cleanup-pod,pod-template-hash: 7698ff6f6b,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:cleanup-pod pod-template-hash:7698ff6f6b] map[] [] [] []} {[] [] [{agnhost registry.k8s.io/e2e-test-images/agnhost:2.43 [] [] [] [] [] {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 0xc005806a48 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:0,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} + Apr 5 20:28:59.481: INFO: All old ReplicaSets of Deployment "test-cleanup-deployment": + Apr 5 20:28:59.482: INFO: &ReplicaSet{ObjectMeta:{test-cleanup-controller deployment-2138 2540e2d8-7640-45db-9171-7a747c4c10b4 150429 1 2023-04-05 20:28:54 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 Deployment test-cleanup-deployment dea254b1-d4d6-4580-aeaa-508d3499ebea 0xc005806877 0xc005806878}] [] [{e2e.test Update apps/v1 2023-04-05 20:28:54 +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 2023-04-05 20:28:58 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status} {kube-controller-manager Update apps/v1 2023-04-05 20:28:59 +0000 UTC FieldsV1 {"f:metadata":{"f:ownerReferences":{".":{},"k:{\"uid\":\"dea254b1-d4d6-4580-aeaa-508d3499ebea\"}":{}}}} }]},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 registry.k8s.io/e2e-test-images/httpd:2.4.38-4 [] [] [] [] [] {map[] map[] []} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc005806938 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{},},} + Apr 5 20:28:59.489: INFO: Pod "test-cleanup-controller-92sxn" is available: + &Pod{ObjectMeta:{test-cleanup-controller-92sxn test-cleanup-controller- deployment-2138 a175f7c2-29df-440d-b2f8-d629f251fe38 150415 0 2023-04-05 20:28:54 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 ReplicaSet test-cleanup-controller 2540e2d8-7640-45db-9171-7a747c4c10b4 0xc004095107 0xc004095108}] [] [{kube-controller-manager Update v1 2023-04-05 20:28:54 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"2540e2d8-7640-45db-9171-7a747c4c10b4\"}":{}}},"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 2023-04-05 20:28:58 +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\":\"192.168.3.17\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-wq4h6,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:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-wq4h6,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:ttneyla26-md-0-8474989c68-rj4zb,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:54 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:58 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2023-04-05 20:28:54 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:195.17.150.192,PodIP:192.168.3.17,StartTime:2023-04-05 20:28:54 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2023-04-05 20:28:58 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:registry.k8s.io/e2e-test-images/httpd:2.4.38-4,ImageID:registry.k8s.io/e2e-test-images/httpd@sha256:148b022f5c5da426fc2f3c14b5c0867e58ef05961510c84749ac1fddcb0fef22,ContainerID:containerd://b46d2ba20058c6e060b7dbf36fd1378f481e9ed2bebd8b86f2cdbf12dabdbe00,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:192.168.3.17,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + [AfterEach] [sig-apps] Deployment + test/e2e/framework/node/init/init.go:32 + Apr 5 20:28:59.490: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Deployment + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Deployment + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Deployment + tear down framework | framework.go:193 + STEP: Destroying namespace "deployment-2138" for this suite. 04/05/23 20:28:59.495 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:82 +[BeforeEach] [sig-network] Networking + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:28:59.51 +Apr 5 20:28:59.510: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:28:59.511 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:59.533 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:59.536 +[BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 +[It] should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:82 +STEP: Performing setup for networking test in namespace pod-network-test-6070 04/05/23 20:28:59.54 +STEP: creating a selector 04/05/23 20:28:59.54 +STEP: Creating the service pods in kubernetes 04/05/23 20:28:59.54 +Apr 5 20:28:59.541: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Apr 5 20:28:59.572: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-6070" to be "running and ready" +Apr 5 20:28:59.575: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.881741ms +Apr 5 20:28:59.575: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:01.580: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007740441s +Apr 5 20:29:01.581: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:03.579: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007077015s +Apr 5 20:29:03.580: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:05.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.00805023s +Apr 5 20:29:05.581: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:07.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.007921876s +Apr 5 20:29:07.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:09.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.007705326s +Apr 5 20:29:09.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:11.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.00765106s +Apr 5 20:29:11.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:13.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.007625778s +Apr 5 20:29:13.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:15.582: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.009189984s +Apr 5 20:29:15.582: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:17.579: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.006688959s +Apr 5 20:29:17.579: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:19.581: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.008455598s +Apr 5 20:29:19.581: INFO: The phase of Pod netserver-0 is Running (Ready = false) +Apr 5 20:29:21.581: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.008848036s +Apr 5 20:29:21.581: INFO: The phase of Pod netserver-0 is Running (Ready = true) +Apr 5 20:29:21.581: INFO: Pod "netserver-0" satisfied condition "running and ready" +Apr 5 20:29:21.585: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-6070" to be "running and ready" +Apr 5 20:29:21.588: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.272792ms +Apr 5 20:29:21.588: INFO: The phase of Pod netserver-1 is Running (Ready = true) +Apr 5 20:29:21.588: INFO: Pod "netserver-1" satisfied condition "running and ready" +Apr 5 20:29:21.591: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-6070" to be "running and ready" +Apr 5 20:29:21.594: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.012115ms +Apr 5 20:29:21.594: INFO: The phase of Pod netserver-2 is Running (Ready = true) +Apr 5 20:29:21.594: INFO: Pod "netserver-2" satisfied condition "running and ready" +STEP: Creating test pods 04/05/23 20:29:21.598 +Apr 5 20:29:21.603: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-6070" to be "running" +Apr 5 20:29:21.609: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.623352ms +Apr 5 20:29:23.614: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011154811s +Apr 5 20:29:25.614: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 4.011330329s +Apr 5 20:29:25.614: INFO: Pod "test-container-pod" satisfied condition "running" +Apr 5 20:29:25.618: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Apr 5 20:29:25.618: INFO: Breadth first check of 192.168.2.10 on host 195.17.150.191... +Apr 5 20:29:25.620: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.2.10&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:29:25.620: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:29:25.621: INFO: ExecWithOptions: Clientset creation +Apr 5 20:29:25.621: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.2.10%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:29:25.713: INFO: Waiting for responses: map[] +Apr 5 20:29:25.713: INFO: reached 192.168.2.10 after 0/1 tries +Apr 5 20:29:25.714: INFO: Breadth first check of 192.168.3.47 on host 195.17.150.192... +Apr 5 20:29:25.718: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.3.47&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:29:25.718: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:29:25.719: INFO: ExecWithOptions: Clientset creation +Apr 5 20:29:25.719: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.3.47%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:29:25.812: INFO: Waiting for responses: map[] +Apr 5 20:29:25.812: INFO: reached 192.168.3.47 after 0/1 tries +Apr 5 20:29:25.812: INFO: Breadth first check of 192.168.1.35 on host 195.17.2.92... +Apr 5 20:29:25.817: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.1.35&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:29:25.817: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:29:25.818: INFO: ExecWithOptions: Clientset creation +Apr 5 20:29:25.818: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.1.35%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Apr 5 20:29:25.903: INFO: Waiting for responses: map[] +Apr 5 20:29:25.903: INFO: reached 192.168.1.35 after 0/1 tries +Apr 5 20:29:25.903: INFO: Going to retry 0 out of 3 pods.... +[AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 +Apr 5 20:29:25.903: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 +STEP: Destroying namespace "pod-network-test-6070" for this suite. 04/05/23 20:29:25.908 +------------------------------ +• [SLOW TEST] [26.406 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/common/network/networking.go:82 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Networking + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:28:59.51 + Apr 5 20:28:59.510: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pod-network-test 04/05/23 20:28:59.511 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:28:59.533 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:28:59.536 + [BeforeEach] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:31 + [It] should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/common/network/networking.go:82 + STEP: Performing setup for networking test in namespace pod-network-test-6070 04/05/23 20:28:59.54 + STEP: creating a selector 04/05/23 20:28:59.54 + STEP: Creating the service pods in kubernetes 04/05/23 20:28:59.54 + Apr 5 20:28:59.541: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable + Apr 5 20:28:59.572: INFO: Waiting up to 5m0s for pod "netserver-0" in namespace "pod-network-test-6070" to be "running and ready" + Apr 5 20:28:59.575: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.881741ms + Apr 5 20:28:59.575: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:01.580: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007740441s + Apr 5 20:29:01.581: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:03.579: INFO: Pod "netserver-0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007077015s + Apr 5 20:29:03.580: INFO: The phase of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:05.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 6.00805023s + Apr 5 20:29:05.581: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:07.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 8.007921876s + Apr 5 20:29:07.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:09.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 10.007705326s + Apr 5 20:29:09.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:11.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 12.00765106s + Apr 5 20:29:11.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:13.580: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 14.007625778s + Apr 5 20:29:13.580: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:15.582: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 16.009189984s + Apr 5 20:29:15.582: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:17.579: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 18.006688959s + Apr 5 20:29:17.579: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:19.581: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=false. Elapsed: 20.008455598s + Apr 5 20:29:19.581: INFO: The phase of Pod netserver-0 is Running (Ready = false) + Apr 5 20:29:21.581: INFO: Pod "netserver-0": Phase="Running", Reason="", readiness=true. Elapsed: 22.008848036s + Apr 5 20:29:21.581: INFO: The phase of Pod netserver-0 is Running (Ready = true) + Apr 5 20:29:21.581: INFO: Pod "netserver-0" satisfied condition "running and ready" + Apr 5 20:29:21.585: INFO: Waiting up to 5m0s for pod "netserver-1" in namespace "pod-network-test-6070" to be "running and ready" + Apr 5 20:29:21.588: INFO: Pod "netserver-1": Phase="Running", Reason="", readiness=true. Elapsed: 3.272792ms + Apr 5 20:29:21.588: INFO: The phase of Pod netserver-1 is Running (Ready = true) + Apr 5 20:29:21.588: INFO: Pod "netserver-1" satisfied condition "running and ready" + Apr 5 20:29:21.591: INFO: Waiting up to 5m0s for pod "netserver-2" in namespace "pod-network-test-6070" to be "running and ready" + Apr 5 20:29:21.594: INFO: Pod "netserver-2": Phase="Running", Reason="", readiness=true. Elapsed: 3.012115ms + Apr 5 20:29:21.594: INFO: The phase of Pod netserver-2 is Running (Ready = true) + Apr 5 20:29:21.594: INFO: Pod "netserver-2" satisfied condition "running and ready" + STEP: Creating test pods 04/05/23 20:29:21.598 + Apr 5 20:29:21.603: INFO: Waiting up to 5m0s for pod "test-container-pod" in namespace "pod-network-test-6070" to be "running" + Apr 5 20:29:21.609: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 6.623352ms + Apr 5 20:29:23.614: INFO: Pod "test-container-pod": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011154811s + Apr 5 20:29:25.614: INFO: Pod "test-container-pod": Phase="Running", Reason="", readiness=true. Elapsed: 4.011330329s + Apr 5 20:29:25.614: INFO: Pod "test-container-pod" satisfied condition "running" + Apr 5 20:29:25.618: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 + Apr 5 20:29:25.618: INFO: Breadth first check of 192.168.2.10 on host 195.17.150.191... + Apr 5 20:29:25.620: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.2.10&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:29:25.620: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:29:25.621: INFO: ExecWithOptions: Clientset creation + Apr 5 20:29:25.621: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.2.10%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:29:25.713: INFO: Waiting for responses: map[] + Apr 5 20:29:25.713: INFO: reached 192.168.2.10 after 0/1 tries + Apr 5 20:29:25.714: INFO: Breadth first check of 192.168.3.47 on host 195.17.150.192... + Apr 5 20:29:25.718: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.3.47&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:29:25.718: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:29:25.719: INFO: ExecWithOptions: Clientset creation + Apr 5 20:29:25.719: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.3.47%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:29:25.812: INFO: Waiting for responses: map[] + Apr 5 20:29:25.812: INFO: reached 192.168.3.47 after 0/1 tries + Apr 5 20:29:25.812: INFO: Breadth first check of 192.168.1.35 on host 195.17.2.92... + Apr 5 20:29:25.817: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://192.168.3.71:9080/dial?request=hostname&protocol=http&host=192.168.1.35&port=8083&tries=1'] Namespace:pod-network-test-6070 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:29:25.817: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:29:25.818: INFO: ExecWithOptions: Clientset creation + Apr 5 20:29:25.818: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/pod-network-test-6070/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F192.168.3.71%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D192.168.1.35%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) + Apr 5 20:29:25.903: INFO: Waiting for responses: map[] + Apr 5 20:29:25.903: INFO: reached 192.168.1.35 after 0/1 tries + Apr 5 20:29:25.903: INFO: Going to retry 0 out of 3 pods.... + [AfterEach] [sig-network] Networking + test/e2e/framework/node/init/init.go:32 + Apr 5 20:29:25.903: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Networking + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Networking + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Networking + tear down framework | framework.go:193 + STEP: Destroying namespace "pod-network-test-6070" for this suite. 04/05/23 20:29:25.908 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:53 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:29:25.916 +Apr 5 20:29:25.916: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:29:25.917 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:25.935 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:25.939 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:53 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:29:25.942 +Apr 5 20:29:25.950: INFO: Waiting up to 5m0s for pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776" in namespace "downward-api-808" to be "Succeeded or Failed" +Apr 5 20:29:25.953: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 3.433147ms +Apr 5 20:29:27.960: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00955768s +Apr 5 20:29:29.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00910193s +Apr 5 20:29:31.958: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008153777s +Apr 5 20:29:33.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008686024s +STEP: Saw pod success 04/05/23 20:29:33.959 +Apr 5 20:29:33.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776" satisfied condition "Succeeded or Failed" +Apr 5 20:29:33.962: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 container client-container: +STEP: delete the pod 04/05/23 20:29:33.97 +Apr 5 20:29:33.985: INFO: Waiting for pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 to disappear +Apr 5 20:29:33.988: INFO: Pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:29:33.988: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-808" for this suite. 04/05/23 20:29:33.993 +------------------------------ +• [SLOW TEST] [8.085 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:53 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:29:25.916 + Apr 5 20:29:25.916: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:29:25.917 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:25.935 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:25.939 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide podname only [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:53 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:29:25.942 + Apr 5 20:29:25.950: INFO: Waiting up to 5m0s for pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776" in namespace "downward-api-808" to be "Succeeded or Failed" + Apr 5 20:29:25.953: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 3.433147ms + Apr 5 20:29:27.960: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00955768s + Apr 5 20:29:29.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00910193s + Apr 5 20:29:31.958: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008153777s + Apr 5 20:29:33.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008686024s + STEP: Saw pod success 04/05/23 20:29:33.959 + Apr 5 20:29:33.959: INFO: Pod "downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776" satisfied condition "Succeeded or Failed" + Apr 5 20:29:33.962: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 container client-container: + STEP: delete the pod 04/05/23 20:29:33.97 + Apr 5 20:29:33.985: INFO: Waiting for pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 to disappear + Apr 5 20:29:33.988: INFO: Pod downwardapi-volume-328fc610-bcb5-4bc8-b924-e5238138b776 no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:29:33.988: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-808" for this suite. 04/05/23 20:29:33.993 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-storage] CSIInlineVolumes + should support ephemeral VolumeLifecycleMode in CSIDriver API [Conformance] + test/e2e/storage/csi_inline.go:46 +[BeforeEach] [sig-storage] CSIInlineVolumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:29:34.003 +Apr 5 20:29:34.003: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename csiinlinevolumes 04/05/23 20:29:34.004 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:34.022 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:34.025 +[BeforeEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:31 +[It] should support ephemeral VolumeLifecycleMode in CSIDriver API [Conformance] + test/e2e/storage/csi_inline.go:46 +STEP: creating 04/05/23 20:29:34.027 +STEP: getting 04/05/23 20:29:34.044 +STEP: listing 04/05/23 20:29:34.05 +STEP: deleting 04/05/23 20:29:34.053 +[AfterEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:29:34.069: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + tear down framework | framework.go:193 +STEP: Destroying namespace "csiinlinevolumes-9817" for this suite. 04/05/23 20:29:34.074 +------------------------------ +• [0.078 seconds] +[sig-storage] CSIInlineVolumes +test/e2e/storage/utils/framework.go:23 + should support ephemeral VolumeLifecycleMode in CSIDriver API [Conformance] + test/e2e/storage/csi_inline.go:46 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] CSIInlineVolumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:29:34.003 + Apr 5 20:29:34.003: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename csiinlinevolumes 04/05/23 20:29:34.004 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:34.022 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:34.025 + [BeforeEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:31 + [It] should support ephemeral VolumeLifecycleMode in CSIDriver API [Conformance] + test/e2e/storage/csi_inline.go:46 + STEP: creating 04/05/23 20:29:34.027 + STEP: getting 04/05/23 20:29:34.044 + STEP: listing 04/05/23 20:29:34.05 + STEP: deleting 04/05/23 20:29:34.053 + [AfterEach] [sig-storage] CSIInlineVolumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:29:34.069: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] CSIInlineVolumes + tear down framework | framework.go:193 + STEP: Destroying namespace "csiinlinevolumes-9817" for this suite. 04/05/23 20:29:34.074 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-apps] ReplicationController + should adopt matching pods on creation [Conformance] + test/e2e/apps/rc.go:92 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:29:34.085 +Apr 5 20:29:34.085: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 20:29:34.086 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:34.105 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:34.108 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should adopt matching pods on creation [Conformance] + test/e2e/apps/rc.go:92 +STEP: Given a Pod with a 'name' label pod-adoption is created 04/05/23 20:29:34.112 +Apr 5 20:29:34.119: INFO: Waiting up to 5m0s for pod "pod-adoption" in namespace "replication-controller-1998" to be "running and ready" +Apr 5 20:29:34.123: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 3.201437ms +Apr 5 20:29:34.123: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:36.128: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008889516s +Apr 5 20:29:36.128: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:38.128: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008658545s +Apr 5 20:29:38.128: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:40.128: INFO: Pod "pod-adoption": Phase="Running", Reason="", readiness=true. Elapsed: 6.008675486s +Apr 5 20:29:40.128: INFO: The phase of Pod pod-adoption is Running (Ready = true) +Apr 5 20:29:40.128: INFO: Pod "pod-adoption" satisfied condition "running and ready" +STEP: When a replication controller with a matching selector is created 04/05/23 20:29:40.131 +STEP: Then the orphan pod is adopted 04/05/23 20:29:40.138 +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 20:29:41.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-1998" for this suite. 04/05/23 20:29:41.151 +------------------------------ +• [SLOW TEST] [7.074 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should adopt matching pods on creation [Conformance] + test/e2e/apps/rc.go:92 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:29:34.085 + Apr 5 20:29:34.085: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 20:29:34.086 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:34.105 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:34.108 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should adopt matching pods on creation [Conformance] + test/e2e/apps/rc.go:92 + STEP: Given a Pod with a 'name' label pod-adoption is created 04/05/23 20:29:34.112 + Apr 5 20:29:34.119: INFO: Waiting up to 5m0s for pod "pod-adoption" in namespace "replication-controller-1998" to be "running and ready" + Apr 5 20:29:34.123: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 3.201437ms + Apr 5 20:29:34.123: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:36.128: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008889516s + Apr 5 20:29:36.128: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:38.128: INFO: Pod "pod-adoption": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008658545s + Apr 5 20:29:38.128: INFO: The phase of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:40.128: INFO: Pod "pod-adoption": Phase="Running", Reason="", readiness=true. Elapsed: 6.008675486s + Apr 5 20:29:40.128: INFO: The phase of Pod pod-adoption is Running (Ready = true) + Apr 5 20:29:40.128: INFO: Pod "pod-adoption" satisfied condition "running and ready" + STEP: When a replication controller with a matching selector is created 04/05/23 20:29:40.131 + STEP: Then the orphan pod is adopted 04/05/23 20:29:40.138 + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 20:29:41.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-1998" for this suite. 04/05/23 20:29:41.151 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:151 +[BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:29:41.163 +Apr 5 20:29:41.163: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 20:29:41.164 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:41.179 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:41.182 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 +STEP: create the container to handle the HTTPGet hook request. 04/05/23 20:29:41.191 +Apr 5 20:29:41.206: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-6925" to be "running and ready" +Apr 5 20:29:41.209: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 3.07244ms +Apr 5 20:29:41.209: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:43.214: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008179048s +Apr 5 20:29:43.215: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:45.215: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00870851s +Apr 5 20:29:45.215: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:47.214: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.007428454s +Apr 5 20:29:47.214: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) +Apr 5 20:29:47.214: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" +[It] should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:151 +STEP: create the pod with lifecycle hook 04/05/23 20:29:47.217 +Apr 5 20:29:47.224: INFO: Waiting up to 5m0s for pod "pod-with-prestop-exec-hook" in namespace "container-lifecycle-hook-6925" to be "running and ready" +Apr 5 20:29:47.227: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.869596ms +Apr 5 20:29:47.227: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:49.233: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008601491s +Apr 5 20:29:49.233: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:51.232: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007273221s +Apr 5 20:29:51.232: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:29:53.233: INFO: Pod "pod-with-prestop-exec-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.008762457s +Apr 5 20:29:53.233: INFO: The phase of Pod pod-with-prestop-exec-hook is Running (Ready = true) +Apr 5 20:29:53.233: INFO: Pod "pod-with-prestop-exec-hook" satisfied condition "running and ready" +STEP: delete the pod with lifecycle hook 04/05/23 20:29:53.236 +Apr 5 20:29:53.245: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear +Apr 5 20:29:53.248: INFO: Pod pod-with-prestop-exec-hook still exists +Apr 5 20:29:55.249: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear +Apr 5 20:29:55.254: INFO: Pod pod-with-prestop-exec-hook no longer exists +STEP: check prestop hook 04/05/23 20:29:55.254 +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 +Apr 5 20:29:55.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 +STEP: Destroying namespace "container-lifecycle-hook-6925" for this suite. 04/05/23 20:29:55.27 +------------------------------ +• [SLOW TEST] [14.114 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/common/node/lifecycle_hook.go:151 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Lifecycle Hook + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:29:41.163 + Apr 5 20:29:41.163: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-lifecycle-hook 04/05/23 20:29:41.164 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:41.179 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:41.182 + [BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:77 + STEP: create the container to handle the HTTPGet hook request. 04/05/23 20:29:41.191 + Apr 5 20:29:41.206: INFO: Waiting up to 5m0s for pod "pod-handle-http-request" in namespace "container-lifecycle-hook-6925" to be "running and ready" + Apr 5 20:29:41.209: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 3.07244ms + Apr 5 20:29:41.209: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:43.214: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008179048s + Apr 5 20:29:43.215: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:45.215: INFO: Pod "pod-handle-http-request": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00870851s + Apr 5 20:29:45.215: INFO: The phase of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:47.214: INFO: Pod "pod-handle-http-request": Phase="Running", Reason="", readiness=true. Elapsed: 6.007428454s + Apr 5 20:29:47.214: INFO: The phase of Pod pod-handle-http-request is Running (Ready = true) + Apr 5 20:29:47.214: INFO: Pod "pod-handle-http-request" satisfied condition "running and ready" + [It] should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/common/node/lifecycle_hook.go:151 + STEP: create the pod with lifecycle hook 04/05/23 20:29:47.217 + Apr 5 20:29:47.224: INFO: Waiting up to 5m0s for pod "pod-with-prestop-exec-hook" in namespace "container-lifecycle-hook-6925" to be "running and ready" + Apr 5 20:29:47.227: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.869596ms + Apr 5 20:29:47.227: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:49.233: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008601491s + Apr 5 20:29:49.233: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:51.232: INFO: Pod "pod-with-prestop-exec-hook": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007273221s + Apr 5 20:29:51.232: INFO: The phase of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:29:53.233: INFO: Pod "pod-with-prestop-exec-hook": Phase="Running", Reason="", readiness=true. Elapsed: 6.008762457s + Apr 5 20:29:53.233: INFO: The phase of Pod pod-with-prestop-exec-hook is Running (Ready = true) + Apr 5 20:29:53.233: INFO: Pod "pod-with-prestop-exec-hook" satisfied condition "running and ready" + STEP: delete the pod with lifecycle hook 04/05/23 20:29:53.236 + Apr 5 20:29:53.245: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear + Apr 5 20:29:53.248: INFO: Pod pod-with-prestop-exec-hook still exists + Apr 5 20:29:55.249: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear + Apr 5 20:29:55.254: INFO: Pod pod-with-prestop-exec-hook no longer exists + STEP: check prestop hook 04/05/23 20:29:55.254 + [AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/node/init/init.go:32 + Apr 5 20:29:55.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Lifecycle Hook + tear down framework | framework.go:193 + STEP: Destroying namespace "container-lifecycle-hook-6925" for this suite. 04/05/23 20:29:55.27 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[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/apps/statefulset.go:587 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:29:55.278 +Apr 5 20:29:55.279: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 20:29:55.28 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:55.354 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:55.359 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-4109 04/05/23 20:29:55.362 +[It] Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/apps/statefulset.go:587 +STEP: Initializing watcher for selector baz=blah,foo=bar 04/05/23 20:29:55.367 +STEP: Creating stateful set ss in namespace statefulset-4109 04/05/23 20:29:55.371 +STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-4109 04/05/23 20:29:55.379 +Apr 5 20:29:55.384: INFO: Found 0 stateful pods, waiting for 1 +Apr 5 20:30:05.389: 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 04/05/23 20:30:05.389 +Apr 5 20:30:05.393: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:30:05.571: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:30:05.571: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:30:05.571: 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' + +Apr 5 20:30:05.575: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true +Apr 5 20:30:15.581: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:30:15.581: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:30:15.596: INFO: Verifying statefulset ss doesn't scale past 1 for another 9.999999783s +Apr 5 20:30:16.601: INFO: Verifying statefulset ss doesn't scale past 1 for another 8.996441738s +Apr 5 20:30:17.606: INFO: Verifying statefulset ss doesn't scale past 1 for another 7.991838803s +Apr 5 20:30:18.610: INFO: Verifying statefulset ss doesn't scale past 1 for another 6.98689101s +Apr 5 20:30:19.615: INFO: Verifying statefulset ss doesn't scale past 1 for another 5.982593171s +Apr 5 20:30:20.620: INFO: Verifying statefulset ss doesn't scale past 1 for another 4.978058024s +Apr 5 20:30:21.625: INFO: Verifying statefulset ss doesn't scale past 1 for another 3.9730364s +Apr 5 20:30:22.630: INFO: Verifying statefulset ss doesn't scale past 1 for another 2.96803555s +Apr 5 20:30:23.635: INFO: Verifying statefulset ss doesn't scale past 1 for another 1.962812641s +Apr 5 20:30:24.641: INFO: Verifying statefulset ss doesn't scale past 1 for another 956.776558ms +STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-4109 04/05/23 20:30:25.641 +Apr 5 20:30:25.646: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:30:25.829: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 20:30:25.829: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:30:25.829: 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' + +Apr 5 20:30:25.834: INFO: Found 1 stateful pods, waiting for 3 +Apr 5 20:30:35.841: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:30:35.841: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:30:35.841: 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 04/05/23 20:30:35.841 +STEP: Scale down will halt with unhealthy stateful pod 04/05/23 20:30:35.841 +Apr 5 20:30:35.849: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:30:36.022: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:30:36.022: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:30:36.022: 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' + +Apr 5 20:30:36.023: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:30:36.203: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:30:36.203: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:30:36.203: 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' + +Apr 5 20:30:36.203: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Apr 5 20:30:36.406: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Apr 5 20:30:36.407: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Apr 5 20:30:36.407: 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' + +Apr 5 20:30:36.407: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:30:36.410: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 3 +Apr 5 20:30:46.421: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:30:46.421: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:30:46.421: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false +Apr 5 20:30:46.436: INFO: Verifying statefulset ss doesn't scale past 3 for another 9.999999809s +Apr 5 20:30:47.441: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.996883042s +Apr 5 20:30:48.445: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.992604704s +Apr 5 20:30:49.450: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.987996984s +Apr 5 20:30:50.454: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.983405195s +Apr 5 20:30:51.460: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.978639824s +Apr 5 20:30:52.465: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.973165538s +Apr 5 20:30:53.469: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.968028624s +Apr 5 20:30:54.475: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.963333147s +Apr 5 20:30:55.481: INFO: Verifying statefulset ss doesn't scale past 3 for another 956.989143ms +STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-4109 04/05/23 20:30:56.481 +Apr 5 20:30:56.486: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:30:56.664: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 20:30:56.664: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:30:56.664: 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' + +Apr 5 20:30:56.664: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:30:56.842: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 20:30:56.842: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:30:56.842: 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' + +Apr 5 20:30:56.842: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Apr 5 20:30:57.017: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Apr 5 20:30:57.017: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Apr 5 20:30:57.017: 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' + +Apr 5 20:30:57.017: INFO: Scaling statefulset ss to 0 +STEP: Verifying that stateful set ss was scaled down in reverse order 04/05/23 20:31:07.037 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 20:31:07.037: INFO: Deleting all statefulset in ns statefulset-4109 +Apr 5 20:31:07.041: INFO: Scaling statefulset ss to 0 +Apr 5 20:31:07.052: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:31:07.056: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:31:07.067: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-4109" for this suite. 04/05/23 20:31:07.072 +------------------------------ +• [SLOW TEST] [71.800 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/apps/statefulset.go:587 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:29:55.278 + Apr 5 20:29:55.279: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 20:29:55.28 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:29:55.354 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:29:55.359 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-4109 04/05/23 20:29:55.362 + [It] Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/apps/statefulset.go:587 + STEP: Initializing watcher for selector baz=blah,foo=bar 04/05/23 20:29:55.367 + STEP: Creating stateful set ss in namespace statefulset-4109 04/05/23 20:29:55.371 + STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-4109 04/05/23 20:29:55.379 + Apr 5 20:29:55.384: INFO: Found 0 stateful pods, waiting for 1 + Apr 5 20:30:05.389: 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 04/05/23 20:30:05.389 + Apr 5 20:30:05.393: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:30:05.571: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:30:05.571: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:30:05.571: 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' + + Apr 5 20:30:05.575: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true + Apr 5 20:30:15.581: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:30:15.581: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:30:15.596: INFO: Verifying statefulset ss doesn't scale past 1 for another 9.999999783s + Apr 5 20:30:16.601: INFO: Verifying statefulset ss doesn't scale past 1 for another 8.996441738s + Apr 5 20:30:17.606: INFO: Verifying statefulset ss doesn't scale past 1 for another 7.991838803s + Apr 5 20:30:18.610: INFO: Verifying statefulset ss doesn't scale past 1 for another 6.98689101s + Apr 5 20:30:19.615: INFO: Verifying statefulset ss doesn't scale past 1 for another 5.982593171s + Apr 5 20:30:20.620: INFO: Verifying statefulset ss doesn't scale past 1 for another 4.978058024s + Apr 5 20:30:21.625: INFO: Verifying statefulset ss doesn't scale past 1 for another 3.9730364s + Apr 5 20:30:22.630: INFO: Verifying statefulset ss doesn't scale past 1 for another 2.96803555s + Apr 5 20:30:23.635: INFO: Verifying statefulset ss doesn't scale past 1 for another 1.962812641s + Apr 5 20:30:24.641: INFO: Verifying statefulset ss doesn't scale past 1 for another 956.776558ms + STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-4109 04/05/23 20:30:25.641 + Apr 5 20:30:25.646: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:30:25.829: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 20:30:25.829: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:30:25.829: 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' + + Apr 5 20:30:25.834: INFO: Found 1 stateful pods, waiting for 3 + Apr 5 20:30:35.841: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:30:35.841: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:30:35.841: 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 04/05/23 20:30:35.841 + STEP: Scale down will halt with unhealthy stateful pod 04/05/23 20:30:35.841 + Apr 5 20:30:35.849: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:30:36.022: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:30:36.022: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:30:36.022: 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' + + Apr 5 20:30:36.023: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:30:36.203: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:30:36.203: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:30:36.203: 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' + + Apr 5 20:30:36.203: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' + Apr 5 20:30:36.406: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" + Apr 5 20:30:36.407: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" + Apr 5 20:30:36.407: 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' + + Apr 5 20:30:36.407: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:30:36.410: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 3 + Apr 5 20:30:46.421: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:30:46.421: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:30:46.421: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false + Apr 5 20:30:46.436: INFO: Verifying statefulset ss doesn't scale past 3 for another 9.999999809s + Apr 5 20:30:47.441: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.996883042s + Apr 5 20:30:48.445: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.992604704s + Apr 5 20:30:49.450: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.987996984s + Apr 5 20:30:50.454: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.983405195s + Apr 5 20:30:51.460: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.978639824s + Apr 5 20:30:52.465: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.973165538s + Apr 5 20:30:53.469: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.968028624s + Apr 5 20:30:54.475: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.963333147s + Apr 5 20:30:55.481: INFO: Verifying statefulset ss doesn't scale past 3 for another 956.989143ms + STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-4109 04/05/23 20:30:56.481 + Apr 5 20:30:56.486: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:30:56.664: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 20:30:56.664: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:30:56.664: 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' + + Apr 5 20:30:56.664: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:30:56.842: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 20:30:56.842: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:30:56.842: 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' + + Apr 5 20:30:56.842: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=statefulset-4109 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' + Apr 5 20:30:57.017: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" + Apr 5 20:30:57.017: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" + Apr 5 20:30:57.017: 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' + + Apr 5 20:30:57.017: INFO: Scaling statefulset ss to 0 + STEP: Verifying that stateful set ss was scaled down in reverse order 04/05/23 20:31:07.037 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 20:31:07.037: INFO: Deleting all statefulset in ns statefulset-4109 + Apr 5 20:31:07.041: INFO: Scaling statefulset ss to 0 + Apr 5 20:31:07.052: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:31:07.056: INFO: Deleting statefulset ss + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:31:07.067: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-4109" for this suite. 04/05/23 20:31:07.072 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:235 +[BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:31:07.081 +Apr 5 20:31:07.081: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:31:07.083 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:07.104 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:07.107 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 +[It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:235 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:31:07.11 +Apr 5 20:31:07.117: INFO: Waiting up to 5m0s for pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935" in namespace "projected-533" to be "Succeeded or Failed" +Apr 5 20:31:07.120: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 2.947027ms +Apr 5 20:31:09.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007609084s +Apr 5 20:31:11.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007563061s +Apr 5 20:31:13.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008018545s +Apr 5 20:31:15.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007826076s +STEP: Saw pod success 04/05/23 20:31:15.125 +Apr 5 20:31:15.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935" satisfied condition "Succeeded or Failed" +Apr 5 20:31:15.129: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 container client-container: +STEP: delete the pod 04/05/23 20:31:15.135 +Apr 5 20:31:15.145: INFO: Waiting for pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 to disappear +Apr 5 20:31:15.148: INFO: Pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 +Apr 5 20:31:15.148: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-533" for this suite. 04/05/23 20:31:15.155 +------------------------------ +• [SLOW TEST] [8.080 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:235 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected downwardAPI + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:31:07.081 + Apr 5 20:31:07.081: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:31:07.083 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:07.104 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:07.107 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:44 + [It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/common/storage/projected_downwardapi.go:235 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:31:07.11 + Apr 5 20:31:07.117: INFO: Waiting up to 5m0s for pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935" in namespace "projected-533" to be "Succeeded or Failed" + Apr 5 20:31:07.120: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 2.947027ms + Apr 5 20:31:09.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007609084s + Apr 5 20:31:11.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007563061s + Apr 5 20:31:13.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008018545s + Apr 5 20:31:15.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007826076s + STEP: Saw pod success 04/05/23 20:31:15.125 + Apr 5 20:31:15.125: INFO: Pod "downwardapi-volume-df896950-9093-4382-b864-601c060e0935" satisfied condition "Succeeded or Failed" + Apr 5 20:31:15.129: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 container client-container: + STEP: delete the pod 04/05/23 20:31:15.135 + Apr 5 20:31:15.145: INFO: Waiting for pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 to disappear + Apr 5 20:31:15.148: INFO: Pod downwardapi-volume-df896950-9093-4382-b864-601c060e0935 no longer exists + [AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/node/init/init.go:32 + Apr 5 20:31:15.148: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected downwardAPI + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-533" for this suite. 04/05/23 20:31:15.155 + << End Captured GinkgoWriter Output +------------------------------ +[sig-storage] EmptyDir volumes + volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:87 +[BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:31:15.164 +Apr 5 20:31:15.164: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename emptydir 04/05/23 20:31:15.165 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:15.181 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:15.184 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 +[It] volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:87 +STEP: Creating a pod to test emptydir volume type on tmpfs 04/05/23 20:31:15.187 +Apr 5 20:31:15.198: INFO: Waiting up to 5m0s for pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274" in namespace "emptydir-5020" to be "Succeeded or Failed" +Apr 5 20:31:15.201: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 2.674443ms +Apr 5 20:31:17.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007972115s +Apr 5 20:31:19.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007794327s +Apr 5 20:31:21.207: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008444051s +Apr 5 20:31:23.205: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.006978363s +STEP: Saw pod success 04/05/23 20:31:23.205 +Apr 5 20:31:23.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274" satisfied condition "Succeeded or Failed" +Apr 5 20:31:23.209: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 container test-container: +STEP: delete the pod 04/05/23 20:31:23.216 +Apr 5 20:31:23.227: INFO: Waiting for pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 to disappear +Apr 5 20:31:23.230: INFO: Pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 +Apr 5 20:31:23.230: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 +STEP: Destroying namespace "emptydir-5020" for this suite. 04/05/23 20:31:23.237 +------------------------------ +• [SLOW TEST] [8.082 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:87 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] EmptyDir volumes + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:31:15.164 + Apr 5 20:31:15.164: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename emptydir 04/05/23 20:31:15.165 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:15.181 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:15.184 + [BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:31 + [It] volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/common/storage/empty_dir.go:87 + STEP: Creating a pod to test emptydir volume type on tmpfs 04/05/23 20:31:15.187 + Apr 5 20:31:15.198: INFO: Waiting up to 5m0s for pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274" in namespace "emptydir-5020" to be "Succeeded or Failed" + Apr 5 20:31:15.201: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 2.674443ms + Apr 5 20:31:17.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007972115s + Apr 5 20:31:19.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007794327s + Apr 5 20:31:21.207: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008444051s + Apr 5 20:31:23.205: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.006978363s + STEP: Saw pod success 04/05/23 20:31:23.205 + Apr 5 20:31:23.206: INFO: Pod "pod-b8b81e54-a488-4e3a-ab46-52f34c710274" satisfied condition "Succeeded or Failed" + Apr 5 20:31:23.209: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 container test-container: + STEP: delete the pod 04/05/23 20:31:23.216 + Apr 5 20:31:23.227: INFO: Waiting for pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 to disappear + Apr 5 20:31:23.230: INFO: Pod pod-b8b81e54-a488-4e3a-ab46-52f34c710274 no longer exists + [AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/node/init/init.go:32 + Apr 5 20:31:23.230: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] EmptyDir volumes + tear down framework | framework.go:193 + STEP: Destroying namespace "emptydir-5020" for this suite. 04/05/23 20:31:23.237 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/apps/statefulset.go:317 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:31:23.248 +Apr 5 20:31:23.248: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 20:31:23.251 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:23.27 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:23.273 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-4246 04/05/23 20:31:23.278 +[It] should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/apps/statefulset.go:317 +STEP: Creating a new StatefulSet 04/05/23 20:31:23.283 +Apr 5 20:31:23.292: INFO: Found 0 stateful pods, waiting for 3 +Apr 5 20:31:33.298: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:31:33.298: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:31:33.298: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Pending - Ready=false +Apr 5 20:31:43.299: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:31:43.299: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:31:43.299: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Updating stateful set template: update image from registry.k8s.io/e2e-test-images/httpd:2.4.38-4 to registry.k8s.io/e2e-test-images/httpd:2.4.39-4 04/05/23 20:31:43.31 +Apr 5 20:31:43.332: INFO: Updating stateful set ss2 +STEP: Creating a new revision 04/05/23 20:31:43.332 +STEP: Not applying an update when the partition is greater than the number of replicas 04/05/23 20:31:53.355 +STEP: Performing a canary update 04/05/23 20:31:53.355 +Apr 5 20:31:53.376: INFO: Updating stateful set ss2 +Apr 5 20:31:53.383: INFO: Waiting for Pod statefulset-4246/ss2-2 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +STEP: Restoring Pods to the correct revision when they are deleted 04/05/23 20:32:03.392 +Apr 5 20:32:03.421: INFO: Found 1 stateful pods, waiting for 3 +Apr 5 20:32:13.428: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:32:13.428: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:32:13.428: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Performing a phased rolling update 04/05/23 20:32:13.434 +Apr 5 20:32:13.456: INFO: Updating stateful set ss2 +Apr 5 20:32:13.464: INFO: Waiting for Pod statefulset-4246/ss2-1 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +Apr 5 20:32:23.496: INFO: Updating stateful set ss2 +Apr 5 20:32:23.503: INFO: Waiting for StatefulSet statefulset-4246/ss2 to complete update +Apr 5 20:32:23.503: INFO: Waiting for Pod statefulset-4246/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 20:32:33.513: INFO: Deleting all statefulset in ns statefulset-4246 +Apr 5 20:32:33.516: INFO: Scaling statefulset ss2 to 0 +Apr 5 20:32:43.539: INFO: Waiting for statefulset status.replicas updated to 0 +Apr 5 20:32:43.543: INFO: Deleting statefulset ss2 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:32:43.558: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-4246" for this suite. 04/05/23 20:32:43.564 +------------------------------ +• [SLOW TEST] [80.322 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/apps/statefulset.go:317 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:31:23.248 + Apr 5 20:31:23.248: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 20:31:23.251 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:31:23.27 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:31:23.273 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-4246 04/05/23 20:31:23.278 + [It] should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/apps/statefulset.go:317 + STEP: Creating a new StatefulSet 04/05/23 20:31:23.283 + Apr 5 20:31:23.292: INFO: Found 0 stateful pods, waiting for 3 + Apr 5 20:31:33.298: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:31:33.298: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:31:33.298: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Pending - Ready=false + Apr 5 20:31:43.299: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:31:43.299: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:31:43.299: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true + STEP: Updating stateful set template: update image from registry.k8s.io/e2e-test-images/httpd:2.4.38-4 to registry.k8s.io/e2e-test-images/httpd:2.4.39-4 04/05/23 20:31:43.31 + Apr 5 20:31:43.332: INFO: Updating stateful set ss2 + STEP: Creating a new revision 04/05/23 20:31:43.332 + STEP: Not applying an update when the partition is greater than the number of replicas 04/05/23 20:31:53.355 + STEP: Performing a canary update 04/05/23 20:31:53.355 + Apr 5 20:31:53.376: INFO: Updating stateful set ss2 + Apr 5 20:31:53.383: INFO: Waiting for Pod statefulset-4246/ss2-2 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + STEP: Restoring Pods to the correct revision when they are deleted 04/05/23 20:32:03.392 + Apr 5 20:32:03.421: INFO: Found 1 stateful pods, waiting for 3 + Apr 5 20:32:13.428: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:32:13.428: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:32:13.428: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true + STEP: Performing a phased rolling update 04/05/23 20:32:13.434 + Apr 5 20:32:13.456: INFO: Updating stateful set ss2 + Apr 5 20:32:13.464: INFO: Waiting for Pod statefulset-4246/ss2-1 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + Apr 5 20:32:23.496: INFO: Updating stateful set ss2 + Apr 5 20:32:23.503: INFO: Waiting for StatefulSet statefulset-4246/ss2 to complete update + Apr 5 20:32:23.503: INFO: Waiting for Pod statefulset-4246/ss2-0 to have revision ss2-5459d8585b update revision ss2-7b6c9599d5 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 20:32:33.513: INFO: Deleting all statefulset in ns statefulset-4246 + Apr 5 20:32:33.516: INFO: Scaling statefulset ss2 to 0 + Apr 5 20:32:43.539: INFO: Waiting for statefulset status.replicas updated to 0 + Apr 5 20:32:43.543: INFO: Deleting statefulset ss2 + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:32:43.558: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-4246" for this suite. 04/05/23 20:32:43.564 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Proxy version v1 + should proxy through a service and a pod [Conformance] + test/e2e/network/proxy.go:101 +[BeforeEach] version v1 + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:32:43.572 +Apr 5 20:32:43.572: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename proxy 04/05/23 20:32:43.574 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:32:43.591 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:32:43.593 +[BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 +[It] should proxy through a service and a pod [Conformance] + test/e2e/network/proxy.go:101 +STEP: starting an echo server on multiple ports 04/05/23 20:32:43.617 +STEP: creating replication controller proxy-service-4bgwq in namespace proxy-1372 04/05/23 20:32:43.618 +I0405 20:32:43.626824 19 runners.go:193] Created replication controller with name: proxy-service-4bgwq, namespace: proxy-1372, replica count: 1 +I0405 20:32:44.678312 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:32:45.678504 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:32:46.679568 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:32:47.680970 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I0405 20:32:48.681128 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 1 runningButNotReady +I0405 20:32:49.682175 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 1 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Apr 5 20:32:49.686: INFO: setup took 6.089491702s, starting test cases +STEP: running 16 cases, 20 attempts per case, 320 total attempts 04/05/23 20:32:49.686 +Apr 5 20:32:49.693: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.106456ms) +Apr 5 20:32:49.701: INFO: (0) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 13.757534ms) +Apr 5 20:32:49.701: INFO: (0) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 14.780565ms) +Apr 5 20:32:49.702: INFO: (0) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 14.57667ms) +Apr 5 20:32:49.702: INFO: (0) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 15.150805ms) +Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 17.538144ms) +Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 17.636425ms) +Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.446284ms) +Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 7.742213ms) +Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 8.469058ms) +Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 8.841202ms) +Apr 5 20:32:49.718: INFO: (1) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.568913ms) +Apr 5 20:32:49.719: INFO: (1) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.894425ms) +Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.920802ms) +Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.58536ms) +Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.550163ms) +Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 11.647638ms) +Apr 5 20:32:49.721: INFO: (1) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.267158ms) +Apr 5 20:32:49.727: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 5.942998ms) +Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.600618ms) +Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 6.59636ms) +Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.747298ms) +Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.553804ms) +Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 8.484197ms) +Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.74013ms) +Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 9.863854ms) +Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.40023ms) +Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.636694ms) +Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.27755ms) +Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 10.675726ms) +Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.378799ms) +Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.924875ms) +Apr 5 20:32:49.744: INFO: (3) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.406032ms) +Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 8.137978ms) +Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.794819ms) +Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 8.462601ms) +Apr 5 20:32:49.746: INFO: (3) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 8.320771ms) +Apr 5 20:32:49.746: INFO: (3) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 5.207802ms) +Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.800166ms) +Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 7.256611ms) +Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 7.674248ms) +Apr 5 20:32:49.757: INFO: (4) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.387042ms) +Apr 5 20:32:49.757: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 8.731762ms) +Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.988984ms) +Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 9.449072ms) +Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 9.442912ms) +Apr 5 20:32:49.761: INFO: (4) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.911676ms) +Apr 5 20:32:49.761: INFO: (4) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.171954ms) +Apr 5 20:32:49.765: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 3.819568ms) +Apr 5 20:32:49.767: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.378136ms) +Apr 5 20:32:49.767: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.857191ms) +Apr 5 20:32:49.768: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 6.557479ms) +Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.835897ms) +Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.971495ms) +Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.368702ms) +Apr 5 20:32:49.770: INFO: (5) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.16265ms) +Apr 5 20:32:49.770: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.805642ms) +Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 8.635532ms) +Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.275958ms) +Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.04466ms) +Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.136328ms) +Apr 5 20:32:49.773: INFO: (5) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.426749ms) +Apr 5 20:32:49.773: INFO: (5) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.914543ms) +Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 4.64359ms) +Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 4.604213ms) +Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 4.986664ms) +Apr 5 20:32:49.779: INFO: (6) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.501577ms) +Apr 5 20:32:49.779: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 5.937355ms) +Apr 5 20:32:49.780: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.997798ms) +Apr 5 20:32:49.781: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 7.817479ms) +Apr 5 20:32:49.782: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 8.064418ms) +Apr 5 20:32:49.782: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 5.253613ms) +Apr 5 20:32:49.792: INFO: (7) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.94033ms) +Apr 5 20:32:49.797: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.264331ms) +Apr 5 20:32:49.797: INFO: (7) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.923969ms) +Apr 5 20:32:49.799: INFO: (7) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.821646ms) +Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 12.081515ms) +Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 12.647149ms) +Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.718805ms) +Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 12.123675ms) +Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 12.958449ms) +Apr 5 20:32:49.801: INFO: (7) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 13.131905ms) +Apr 5 20:32:49.806: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 4.851086ms) +Apr 5 20:32:49.807: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.055747ms) +Apr 5 20:32:49.808: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.412846ms) +Apr 5 20:32:49.808: INFO: (8) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 6.633752ms) +Apr 5 20:32:49.809: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 7.454456ms) +Apr 5 20:32:49.809: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.07675ms) +Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.176801ms) +Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.478474ms) +Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.92825ms) +Apr 5 20:32:49.813: INFO: (8) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.542307ms) +Apr 5 20:32:49.813: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 10.750587ms) +Apr 5 20:32:49.814: INFO: (8) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 12.247824ms) +Apr 5 20:32:49.820: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.370298ms) +Apr 5 20:32:49.820: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 4.71093ms) +Apr 5 20:32:49.821: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.692827ms) +Apr 5 20:32:49.822: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.334906ms) +Apr 5 20:32:49.822: INFO: (9) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 7.85589ms) +Apr 5 20:32:49.823: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 7.496577ms) +Apr 5 20:32:49.823: INFO: (9) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.790973ms) +Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.529071ms) +Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.523747ms) +Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 5.683745ms) +Apr 5 20:32:49.833: INFO: (10) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 5.32179ms) +Apr 5 20:32:49.833: INFO: (10) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.124182ms) +Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 10.667881ms) +Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 10.38464ms) +Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.479538ms) +Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.348467ms) +Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.110087ms) +Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.400042ms) +Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.129049ms) +Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 11.101498ms) +Apr 5 20:32:49.841: INFO: (10) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 12.868246ms) +Apr 5 20:32:49.846: INFO: (11) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.208346ms) +Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.39311ms) +Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.000334ms) +Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 5.706231ms) +Apr 5 20:32:49.848: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.1082ms) +Apr 5 20:32:49.848: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.490669ms) +Apr 5 20:32:49.849: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 7.289805ms) +Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 8.507294ms) +Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 8.638259ms) +Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.879776ms) +Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 8.839713ms) +Apr 5 20:32:49.851: INFO: (11) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.37524ms) +Apr 5 20:32:49.851: INFO: (11) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.810875ms) +Apr 5 20:32:49.853: INFO: (11) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.823374ms) +Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.625919ms) +Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.750074ms) +Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.252396ms) +Apr 5 20:32:49.860: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.075292ms) +Apr 5 20:32:49.860: INFO: (12) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 7.233504ms) +Apr 5 20:32:49.861: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.290987ms) +Apr 5 20:32:49.861: INFO: (12) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.295616ms) +Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.020566ms) +Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 8.011858ms) +Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 9.523997ms) +Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 8.971608ms) +Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.152772ms) +Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 8.668736ms) +Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.571872ms) +Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 4.015694ms) +Apr 5 20:32:49.870: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.768725ms) +Apr 5 20:32:49.870: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 6.4231ms) +Apr 5 20:32:49.872: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.572699ms) +Apr 5 20:32:49.872: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.516389ms) +Apr 5 20:32:49.873: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.415343ms) +Apr 5 20:32:49.873: INFO: (13) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.729888ms) +Apr 5 20:32:49.874: INFO: (13) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 9.849299ms) +Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.529818ms) +Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.79827ms) +Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.34013ms) +Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.434091ms) +Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.059662ms) +Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.542975ms) +Apr 5 20:32:49.881: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.842729ms) +Apr 5 20:32:49.882: INFO: (14) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.280315ms) +Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.088227ms) +Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.711712ms) +Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.83029ms) +Apr 5 20:32:49.884: INFO: (14) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.255233ms) +Apr 5 20:32:49.884: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 11.061952ms) +Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 10.951044ms) +Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.172ms) +Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.994531ms) +Apr 5 20:32:49.888: INFO: (14) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 11.382064ms) +Apr 5 20:32:49.893: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.724965ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 11.257937ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 12.180159ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 11.781494ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 12.440855ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.471008ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 12.316916ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.562906ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.753966ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 12.011161ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 12.125806ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.717703ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 12.217945ms) +Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.357155ms) +Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.378781ms) +Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 9.0085ms) +Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.261528ms) +Apr 5 20:32:49.914: INFO: (16) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.48863ms) +Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.79671ms) +Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.48033ms) +Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 11.645517ms) +Apr 5 20:32:49.916: INFO: (16) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.749603ms) +Apr 5 20:32:49.920: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.132072ms) +Apr 5 20:32:49.921: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 5.175334ms) +Apr 5 20:32:49.922: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 6.125712ms) +Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.79269ms) +Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.244437ms) +Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.051522ms) +Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 9.085306ms) +Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.277035ms) +Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.357451ms) +Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.838538ms) +Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.799222ms) +Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.42473ms) +Apr 5 20:32:49.928: INFO: (17) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 11.914606ms) +Apr 5 20:32:49.932: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 3.944055ms) +Apr 5 20:32:49.933: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.207541ms) +Apr 5 20:32:49.933: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 4.782138ms) +Apr 5 20:32:49.934: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.842167ms) +Apr 5 20:32:49.935: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.363645ms) +Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 7.305595ms) +Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.794551ms) +Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.758762ms) +Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.536828ms) +Apr 5 20:32:49.937: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.970954ms) +Apr 5 20:32:49.939: INFO: (18) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 10.440594ms) +Apr 5 20:32:49.939: INFO: (18) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.837874ms) +Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.553645ms) +Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.821645ms) +Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.633092ms) +Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.200317ms) +Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 7.299835ms) +Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 7.396269ms) +Apr 5 20:32:49.949: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 8.435715ms) +Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.077008ms) +Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 8.248784ms) +Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.471027ms) +Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: > + [BeforeEach] version v1 + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:32:43.572 + Apr 5 20:32:43.572: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename proxy 04/05/23 20:32:43.574 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:32:43.591 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:32:43.593 + [BeforeEach] version v1 + test/e2e/framework/metrics/init/init.go:31 + [It] should proxy through a service and a pod [Conformance] + test/e2e/network/proxy.go:101 + STEP: starting an echo server on multiple ports 04/05/23 20:32:43.617 + STEP: creating replication controller proxy-service-4bgwq in namespace proxy-1372 04/05/23 20:32:43.618 + I0405 20:32:43.626824 19 runners.go:193] Created replication controller with name: proxy-service-4bgwq, namespace: proxy-1372, replica count: 1 + I0405 20:32:44.678312 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:32:45.678504 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:32:46.679568 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:32:47.680970 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + I0405 20:32:48.681128 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 0 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 1 runningButNotReady + I0405 20:32:49.682175 19 runners.go:193] proxy-service-4bgwq Pods: 1 out of 1 created, 1 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady + Apr 5 20:32:49.686: INFO: setup took 6.089491702s, starting test cases + STEP: running 16 cases, 20 attempts per case, 320 total attempts 04/05/23 20:32:49.686 + Apr 5 20:32:49.693: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.106456ms) + Apr 5 20:32:49.701: INFO: (0) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 13.757534ms) + Apr 5 20:32:49.701: INFO: (0) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 14.780565ms) + Apr 5 20:32:49.702: INFO: (0) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 14.57667ms) + Apr 5 20:32:49.702: INFO: (0) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 15.150805ms) + Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 17.538144ms) + Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 17.636425ms) + Apr 5 20:32:49.704: INFO: (0) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.446284ms) + Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 7.742213ms) + Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 8.469058ms) + Apr 5 20:32:49.717: INFO: (1) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 8.841202ms) + Apr 5 20:32:49.718: INFO: (1) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.568913ms) + Apr 5 20:32:49.719: INFO: (1) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.894425ms) + Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.920802ms) + Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.58536ms) + Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.550163ms) + Apr 5 20:32:49.720: INFO: (1) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 11.647638ms) + Apr 5 20:32:49.721: INFO: (1) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.267158ms) + Apr 5 20:32:49.727: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 5.942998ms) + Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.600618ms) + Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 6.59636ms) + Apr 5 20:32:49.729: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.747298ms) + Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.553804ms) + Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 8.484197ms) + Apr 5 20:32:49.731: INFO: (2) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.74013ms) + Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 9.863854ms) + Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.40023ms) + Apr 5 20:32:49.732: INFO: (2) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.636694ms) + Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.27755ms) + Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 10.675726ms) + Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.378799ms) + Apr 5 20:32:49.733: INFO: (2) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.924875ms) + Apr 5 20:32:49.744: INFO: (3) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.406032ms) + Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 8.137978ms) + Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.794819ms) + Apr 5 20:32:49.745: INFO: (3) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 8.462601ms) + Apr 5 20:32:49.746: INFO: (3) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 8.320771ms) + Apr 5 20:32:49.746: INFO: (3) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 5.207802ms) + Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.800166ms) + Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 7.256611ms) + Apr 5 20:32:49.756: INFO: (4) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 7.674248ms) + Apr 5 20:32:49.757: INFO: (4) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.387042ms) + Apr 5 20:32:49.757: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 8.731762ms) + Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.988984ms) + Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 9.449072ms) + Apr 5 20:32:49.759: INFO: (4) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 9.442912ms) + Apr 5 20:32:49.761: INFO: (4) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.911676ms) + Apr 5 20:32:49.761: INFO: (4) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.171954ms) + Apr 5 20:32:49.765: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 3.819568ms) + Apr 5 20:32:49.767: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.378136ms) + Apr 5 20:32:49.767: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.857191ms) + Apr 5 20:32:49.768: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 6.557479ms) + Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.835897ms) + Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.971495ms) + Apr 5 20:32:49.769: INFO: (5) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.368702ms) + Apr 5 20:32:49.770: INFO: (5) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.16265ms) + Apr 5 20:32:49.770: INFO: (5) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.805642ms) + Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 8.635532ms) + Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.275958ms) + Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.04466ms) + Apr 5 20:32:49.771: INFO: (5) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.136328ms) + Apr 5 20:32:49.773: INFO: (5) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.426749ms) + Apr 5 20:32:49.773: INFO: (5) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.914543ms) + Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 4.64359ms) + Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 4.604213ms) + Apr 5 20:32:49.778: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 4.986664ms) + Apr 5 20:32:49.779: INFO: (6) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.501577ms) + Apr 5 20:32:49.779: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 5.937355ms) + Apr 5 20:32:49.780: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.997798ms) + Apr 5 20:32:49.781: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 7.817479ms) + Apr 5 20:32:49.782: INFO: (6) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 8.064418ms) + Apr 5 20:32:49.782: INFO: (6) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 5.253613ms) + Apr 5 20:32:49.792: INFO: (7) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.94033ms) + Apr 5 20:32:49.797: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 9.264331ms) + Apr 5 20:32:49.797: INFO: (7) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.923969ms) + Apr 5 20:32:49.799: INFO: (7) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.821646ms) + Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 12.081515ms) + Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 12.647149ms) + Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.718805ms) + Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 12.123675ms) + Apr 5 20:32:49.800: INFO: (7) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 12.958449ms) + Apr 5 20:32:49.801: INFO: (7) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 13.131905ms) + Apr 5 20:32:49.806: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 4.851086ms) + Apr 5 20:32:49.807: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.055747ms) + Apr 5 20:32:49.808: INFO: (8) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.412846ms) + Apr 5 20:32:49.808: INFO: (8) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 6.633752ms) + Apr 5 20:32:49.809: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 7.454456ms) + Apr 5 20:32:49.809: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.07675ms) + Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.176801ms) + Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.478474ms) + Apr 5 20:32:49.812: INFO: (8) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.92825ms) + Apr 5 20:32:49.813: INFO: (8) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.542307ms) + Apr 5 20:32:49.813: INFO: (8) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 10.750587ms) + Apr 5 20:32:49.814: INFO: (8) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 12.247824ms) + Apr 5 20:32:49.820: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.370298ms) + Apr 5 20:32:49.820: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 4.71093ms) + Apr 5 20:32:49.821: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.692827ms) + Apr 5 20:32:49.822: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.334906ms) + Apr 5 20:32:49.822: INFO: (9) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 7.85589ms) + Apr 5 20:32:49.823: INFO: (9) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 7.496577ms) + Apr 5 20:32:49.823: INFO: (9) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.790973ms) + Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.529071ms) + Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.523747ms) + Apr 5 20:32:49.824: INFO: (9) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 5.683745ms) + Apr 5 20:32:49.833: INFO: (10) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 5.32179ms) + Apr 5 20:32:49.833: INFO: (10) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.124182ms) + Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 10.667881ms) + Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 10.38464ms) + Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.479538ms) + Apr 5 20:32:49.838: INFO: (10) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.348467ms) + Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.110087ms) + Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.400042ms) + Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.129049ms) + Apr 5 20:32:49.839: INFO: (10) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 11.101498ms) + Apr 5 20:32:49.841: INFO: (10) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 12.868246ms) + Apr 5 20:32:49.846: INFO: (11) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.208346ms) + Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.39311ms) + Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 6.000334ms) + Apr 5 20:32:49.847: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 5.706231ms) + Apr 5 20:32:49.848: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.1082ms) + Apr 5 20:32:49.848: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.490669ms) + Apr 5 20:32:49.849: INFO: (11) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 7.289805ms) + Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 8.507294ms) + Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 8.638259ms) + Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.879776ms) + Apr 5 20:32:49.850: INFO: (11) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 8.839713ms) + Apr 5 20:32:49.851: INFO: (11) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 9.37524ms) + Apr 5 20:32:49.851: INFO: (11) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.810875ms) + Apr 5 20:32:49.853: INFO: (11) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.823374ms) + Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 5.625919ms) + Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.750074ms) + Apr 5 20:32:49.859: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.252396ms) + Apr 5 20:32:49.860: INFO: (12) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 6.075292ms) + Apr 5 20:32:49.860: INFO: (12) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 7.233504ms) + Apr 5 20:32:49.861: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.290987ms) + Apr 5 20:32:49.861: INFO: (12) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 8.295616ms) + Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.020566ms) + Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 8.011858ms) + Apr 5 20:32:49.862: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 9.523997ms) + Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 8.971608ms) + Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.152772ms) + Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 8.668736ms) + Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.571872ms) + Apr 5 20:32:49.863: INFO: (12) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 4.015694ms) + Apr 5 20:32:49.870: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.768725ms) + Apr 5 20:32:49.870: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 6.4231ms) + Apr 5 20:32:49.872: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.572699ms) + Apr 5 20:32:49.872: INFO: (13) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.516389ms) + Apr 5 20:32:49.873: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.415343ms) + Apr 5 20:32:49.873: INFO: (13) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.729888ms) + Apr 5 20:32:49.874: INFO: (13) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 9.849299ms) + Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.529818ms) + Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.79827ms) + Apr 5 20:32:49.875: INFO: (13) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 10.34013ms) + Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 10.434091ms) + Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.059662ms) + Apr 5 20:32:49.876: INFO: (13) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.542975ms) + Apr 5 20:32:49.881: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.842729ms) + Apr 5 20:32:49.882: INFO: (14) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 5.280315ms) + Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 6.088227ms) + Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 6.711712ms) + Apr 5 20:32:49.883: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 6.83029ms) + Apr 5 20:32:49.884: INFO: (14) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.255233ms) + Apr 5 20:32:49.884: INFO: (14) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test<... (200; 11.061952ms) + Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 10.951044ms) + Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.172ms) + Apr 5 20:32:49.887: INFO: (14) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.994531ms) + Apr 5 20:32:49.888: INFO: (14) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 11.382064ms) + Apr 5 20:32:49.893: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.724965ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 11.257937ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 12.180159ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 11.781494ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 12.440855ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.471008ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 12.316916ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 11.562906ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.753966ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 12.011161ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 12.125806ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 11.717703ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 12.217945ms) + Apr 5 20:32:49.901: INFO: (15) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 8.357155ms) + Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.378781ms) + Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 9.0085ms) + Apr 5 20:32:49.912: INFO: (16) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.261528ms) + Apr 5 20:32:49.914: INFO: (16) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.48863ms) + Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 10.79671ms) + Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 11.48033ms) + Apr 5 20:32:49.915: INFO: (16) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 11.645517ms) + Apr 5 20:32:49.916: INFO: (16) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 11.749603ms) + Apr 5 20:32:49.920: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 4.132072ms) + Apr 5 20:32:49.921: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 5.175334ms) + Apr 5 20:32:49.922: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 6.125712ms) + Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 7.79269ms) + Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.244437ms) + Apr 5 20:32:49.924: INFO: (17) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.051522ms) + Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: ... (200; 9.085306ms) + Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 9.277035ms) + Apr 5 20:32:49.925: INFO: (17) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 9.357451ms) + Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 9.838538ms) + Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 9.799222ms) + Apr 5 20:32:49.926: INFO: (17) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.42473ms) + Apr 5 20:32:49.928: INFO: (17) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 11.914606ms) + Apr 5 20:32:49.932: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 3.944055ms) + Apr 5 20:32:49.933: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 5.207541ms) + Apr 5 20:32:49.933: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 4.782138ms) + Apr 5 20:32:49.934: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 5.842167ms) + Apr 5 20:32:49.935: INFO: (18) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: test (200; 7.363645ms) + Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname2/proxy/: bar (200; 7.305595ms) + Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 7.794551ms) + Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.758762ms) + Apr 5 20:32:49.936: INFO: (18) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:162/proxy/: bar (200; 7.536828ms) + Apr 5 20:32:49.937: INFO: (18) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.970954ms) + Apr 5 20:32:49.939: INFO: (18) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname1/proxy/: tls baz (200; 10.440594ms) + Apr 5 20:32:49.939: INFO: (18) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname1/proxy/: foo (200; 10.837874ms) + Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/proxy-service-4bgwq:portname1/proxy/: foo (200; 10.553645ms) + Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/http:proxy-service-4bgwq:portname2/proxy/: bar (200; 10.821645ms) + Apr 5 20:32:49.940: INFO: (18) /api/v1/namespaces/proxy-1372/services/https:proxy-service-4bgwq:tlsportname2/proxy/: tls qux (200; 11.633092ms) + Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 7.200317ms) + Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54:1080/proxy/: test<... (200; 7.299835ms) + Apr 5 20:32:49.948: INFO: (19) /api/v1/namespaces/proxy-1372/pods/proxy-service-4bgwq-cwj54/proxy/: test (200; 7.396269ms) + Apr 5 20:32:49.949: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:460/proxy/: tls baz (200; 8.435715ms) + Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:160/proxy/: foo (200; 8.077008ms) + Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/http:proxy-service-4bgwq-cwj54:1080/proxy/: ... (200; 8.248784ms) + Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:462/proxy/: tls qux (200; 8.471027ms) + Apr 5 20:32:49.950: INFO: (19) /api/v1/namespaces/proxy-1372/pods/https:proxy-service-4bgwq-cwj54:443/proxy/: >> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename resourcequota 04/05/23 20:32:52.138 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:32:52.154 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:32:52.157 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 +[It] should create a ResourceQuota and capture the life of a replica set. [Conformance] + test/e2e/apimachinery/resource_quota.go:448 +STEP: Counting existing ResourceQuota 04/05/23 20:32:52.16 +STEP: Creating a ResourceQuota 04/05/23 20:32:57.163 +STEP: Ensuring resource quota status is calculated 04/05/23 20:32:57.169 +STEP: Creating a ReplicaSet 04/05/23 20:32:59.174 +STEP: Ensuring resource quota status captures replicaset creation 04/05/23 20:32:59.187 +STEP: Deleting a ReplicaSet 04/05/23 20:33:01.193 +STEP: Ensuring resource quota status released usage 04/05/23 20:33:01.2 +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:03.205: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 +STEP: Destroying namespace "resourcequota-5918" for this suite. 04/05/23 20:33:03.213 +------------------------------ +• [SLOW TEST] [11.088 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/apimachinery/resource_quota.go:448 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] ResourceQuota + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:32:52.133 + Apr 5 20:32:52.133: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename resourcequota 04/05/23 20:32:52.138 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:32:52.154 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:32:52.157 + [BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:31 + [It] should create a ResourceQuota and capture the life of a replica set. [Conformance] + test/e2e/apimachinery/resource_quota.go:448 + STEP: Counting existing ResourceQuota 04/05/23 20:32:52.16 + STEP: Creating a ResourceQuota 04/05/23 20:32:57.163 + STEP: Ensuring resource quota status is calculated 04/05/23 20:32:57.169 + STEP: Creating a ReplicaSet 04/05/23 20:32:59.174 + STEP: Ensuring resource quota status captures replicaset creation 04/05/23 20:32:59.187 + STEP: Deleting a ReplicaSet 04/05/23 20:33:01.193 + STEP: Ensuring resource quota status released usage 04/05/23 20:33:01.2 + [AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:03.205: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] ResourceQuota + tear down framework | framework.go:193 + STEP: Destroying namespace "resourcequota-5918" for this suite. 04/05/23 20:33:03.213 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Ingress API + should support creating Ingress API operations [Conformance] + test/e2e/network/ingress.go:552 +[BeforeEach] [sig-network] Ingress API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:03.227 +Apr 5 20:33:03.227: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename ingress 04/05/23 20:33:03.228 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:03.244 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:03.248 +[BeforeEach] [sig-network] Ingress API + test/e2e/framework/metrics/init/init.go:31 +[It] should support creating Ingress API operations [Conformance] + test/e2e/network/ingress.go:552 +STEP: getting /apis 04/05/23 20:33:03.251 +STEP: getting /apis/networking.k8s.io 04/05/23 20:33:03.255 +STEP: getting /apis/networking.k8s.iov1 04/05/23 20:33:03.256 +STEP: creating 04/05/23 20:33:03.258 +STEP: getting 04/05/23 20:33:03.275 +STEP: listing 04/05/23 20:33:03.279 +STEP: watching 04/05/23 20:33:03.282 +Apr 5 20:33:03.282: INFO: starting watch +STEP: cluster-wide listing 04/05/23 20:33:03.283 +STEP: cluster-wide watching 04/05/23 20:33:03.287 +Apr 5 20:33:03.287: INFO: starting watch +STEP: patching 04/05/23 20:33:03.288 +STEP: updating 04/05/23 20:33:03.294 +Apr 5 20:33:03.301: INFO: waiting for watch events with expected annotations +Apr 5 20:33:03.301: INFO: saw patched and updated annotations +STEP: patching /status 04/05/23 20:33:03.301 +STEP: updating /status 04/05/23 20:33:03.307 +STEP: get /status 04/05/23 20:33:03.315 +STEP: deleting 04/05/23 20:33:03.318 +STEP: deleting a collection 04/05/23 20:33:03.328 +[AfterEach] [sig-network] Ingress API + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:03.346: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Ingress API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Ingress API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Ingress API + tear down framework | framework.go:193 +STEP: Destroying namespace "ingress-7632" for this suite. 04/05/23 20:33:03.351 +------------------------------ +• [0.131 seconds] +[sig-network] Ingress API +test/e2e/network/common/framework.go:23 + should support creating Ingress API operations [Conformance] + test/e2e/network/ingress.go:552 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Ingress API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:03.227 + Apr 5 20:33:03.227: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename ingress 04/05/23 20:33:03.228 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:03.244 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:03.248 + [BeforeEach] [sig-network] Ingress API + test/e2e/framework/metrics/init/init.go:31 + [It] should support creating Ingress API operations [Conformance] + test/e2e/network/ingress.go:552 + STEP: getting /apis 04/05/23 20:33:03.251 + STEP: getting /apis/networking.k8s.io 04/05/23 20:33:03.255 + STEP: getting /apis/networking.k8s.iov1 04/05/23 20:33:03.256 + STEP: creating 04/05/23 20:33:03.258 + STEP: getting 04/05/23 20:33:03.275 + STEP: listing 04/05/23 20:33:03.279 + STEP: watching 04/05/23 20:33:03.282 + Apr 5 20:33:03.282: INFO: starting watch + STEP: cluster-wide listing 04/05/23 20:33:03.283 + STEP: cluster-wide watching 04/05/23 20:33:03.287 + Apr 5 20:33:03.287: INFO: starting watch + STEP: patching 04/05/23 20:33:03.288 + STEP: updating 04/05/23 20:33:03.294 + Apr 5 20:33:03.301: INFO: waiting for watch events with expected annotations + Apr 5 20:33:03.301: INFO: saw patched and updated annotations + STEP: patching /status 04/05/23 20:33:03.301 + STEP: updating /status 04/05/23 20:33:03.307 + STEP: get /status 04/05/23 20:33:03.315 + STEP: deleting 04/05/23 20:33:03.318 + STEP: deleting a collection 04/05/23 20:33:03.328 + [AfterEach] [sig-network] Ingress API + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:03.346: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Ingress API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Ingress API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Ingress API + tear down framework | framework.go:193 + STEP: Destroying namespace "ingress-7632" for this suite. 04/05/23 20:33:03.351 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:73 +[BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:03.36 +Apr 5 20:33:03.360: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename var-expansion 04/05/23 20:33:03.361 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:03.378 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:03.38 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 +[It] should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:73 +STEP: Creating a pod to test substitution in container's command 04/05/23 20:33:03.383 +Apr 5 20:33:03.391: INFO: Waiting up to 5m0s for pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db" in namespace "var-expansion-8642" to be "Succeeded or Failed" +Apr 5 20:33:03.394: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 2.97556ms +Apr 5 20:33:05.400: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008438573s +Apr 5 20:33:07.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007983916s +Apr 5 20:33:09.400: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008575959s +Apr 5 20:33:11.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007198905s +STEP: Saw pod success 04/05/23 20:33:11.399 +Apr 5 20:33:11.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db" satisfied condition "Succeeded or Failed" +Apr 5 20:33:11.402: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db container dapi-container: +STEP: delete the pod 04/05/23 20:33:11.422 +Apr 5 20:33:11.434: INFO: Waiting for pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db to disappear +Apr 5 20:33:11.437: INFO: Pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:11.437: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 +STEP: Destroying namespace "var-expansion-8642" for this suite. 04/05/23 20:33:11.443 +------------------------------ +• [SLOW TEST] [8.088 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/common/node/expansion.go:73 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Variable Expansion + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:03.36 + Apr 5 20:33:03.360: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename var-expansion 04/05/23 20:33:03.361 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:03.378 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:03.38 + [BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:31 + [It] should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/common/node/expansion.go:73 + STEP: Creating a pod to test substitution in container's command 04/05/23 20:33:03.383 + Apr 5 20:33:03.391: INFO: Waiting up to 5m0s for pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db" in namespace "var-expansion-8642" to be "Succeeded or Failed" + Apr 5 20:33:03.394: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 2.97556ms + Apr 5 20:33:05.400: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008438573s + Apr 5 20:33:07.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007983916s + Apr 5 20:33:09.400: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008575959s + Apr 5 20:33:11.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007198905s + STEP: Saw pod success 04/05/23 20:33:11.399 + Apr 5 20:33:11.399: INFO: Pod "var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db" satisfied condition "Succeeded or Failed" + Apr 5 20:33:11.402: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db container dapi-container: + STEP: delete the pod 04/05/23 20:33:11.422 + Apr 5 20:33:11.434: INFO: Waiting for pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db to disappear + Apr 5 20:33:11.437: INFO: Pod var-expansion-c24ec9f0-1bcf-4246-808c-edfc8817b6db no longer exists + [AfterEach] [sig-node] Variable Expansion + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:11.437: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Variable Expansion + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Variable Expansion + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Variable Expansion + tear down framework | framework.go:193 + STEP: Destroying namespace "var-expansion-8642" for this suite. 04/05/23 20:33:11.443 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:217 +[BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:11.457 +Apr 5 20:33:11.457: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:33:11.458 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:11.474 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:11.477 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 +[It] should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:217 +STEP: Creating a pod to test downward api env vars 04/05/23 20:33:11.481 +Apr 5 20:33:11.489: INFO: Waiting up to 5m0s for pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20" in namespace "downward-api-6712" to be "Succeeded or Failed" +Apr 5 20:33:11.493: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 3.579253ms +Apr 5 20:33:13.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008501353s +Apr 5 20:33:15.501: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011273952s +Apr 5 20:33:17.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008790797s +Apr 5 20:33:19.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008542088s +STEP: Saw pod success 04/05/23 20:33:19.498 +Apr 5 20:33:19.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20" satisfied condition "Succeeded or Failed" +Apr 5 20:33:19.502: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 container dapi-container: +STEP: delete the pod 04/05/23 20:33:19.509 +Apr 5 20:33:19.523: INFO: Waiting for pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 to disappear +Apr 5 20:33:19.526: INFO: Pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:19.526: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-6712" for this suite. 04/05/23 20:33:19.531 +------------------------------ +• [SLOW TEST] [8.081 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/common/node/downwardapi.go:217 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Downward API + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:11.457 + Apr 5 20:33:11.457: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:33:11.458 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:11.474 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:11.477 + [BeforeEach] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:31 + [It] should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/common/node/downwardapi.go:217 + STEP: Creating a pod to test downward api env vars 04/05/23 20:33:11.481 + Apr 5 20:33:11.489: INFO: Waiting up to 5m0s for pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20" in namespace "downward-api-6712" to be "Succeeded or Failed" + Apr 5 20:33:11.493: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 3.579253ms + Apr 5 20:33:13.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008501353s + Apr 5 20:33:15.501: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011273952s + Apr 5 20:33:17.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008790797s + Apr 5 20:33:19.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008542088s + STEP: Saw pod success 04/05/23 20:33:19.498 + Apr 5 20:33:19.498: INFO: Pod "downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20" satisfied condition "Succeeded or Failed" + Apr 5 20:33:19.502: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 container dapi-container: + STEP: delete the pod 04/05/23 20:33:19.509 + Apr 5 20:33:19.523: INFO: Waiting for pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 to disappear + Apr 5 20:33:19.526: INFO: Pod downward-api-1f7f0420-a5f2-408a-a80b-5daa26fd5d20 no longer exists + [AfterEach] [sig-node] Downward API + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:19.526: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Downward API + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Downward API + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Downward API + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-6712" for this suite. 04/05/23 20:33:19.531 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:375 +[BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:19.539 +Apr 5 20:33:19.539: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename projected 04/05/23 20:33:19.54 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:19.557 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:19.56 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:375 +STEP: Creating configMap with name projected-configmap-test-volume-8997a3e3-f3d9-49d4-af28-5dfe7d9cc983 04/05/23 20:33:19.563 +STEP: Creating a pod to test consume configMaps 04/05/23 20:33:19.568 +Apr 5 20:33:19.576: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37" in namespace "projected-3350" to be "Succeeded or Failed" +Apr 5 20:33:19.579: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 3.264992ms +Apr 5 20:33:21.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00691942s +Apr 5 20:33:23.584: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00817473s +Apr 5 20:33:25.584: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007561399s +Apr 5 20:33:27.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007301915s +STEP: Saw pod success 04/05/23 20:33:27.583 +Apr 5 20:33:27.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37" satisfied condition "Succeeded or Failed" +Apr 5 20:33:27.587: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 container projected-configmap-volume-test: +STEP: delete the pod 04/05/23 20:33:27.594 +Apr 5 20:33:27.604: INFO: Waiting for pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 to disappear +Apr 5 20:33:27.607: INFO: Pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:27.607: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 +STEP: Destroying namespace "projected-3350" for this suite. 04/05/23 20:33:27.612 +------------------------------ +• [SLOW TEST] [8.079 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/common/storage/projected_configmap.go:375 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Projected configMap + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:19.539 + Apr 5 20:33:19.539: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename projected 04/05/23 20:33:19.54 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:19.557 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:19.56 + [BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/common/storage/projected_configmap.go:375 + STEP: Creating configMap with name projected-configmap-test-volume-8997a3e3-f3d9-49d4-af28-5dfe7d9cc983 04/05/23 20:33:19.563 + STEP: Creating a pod to test consume configMaps 04/05/23 20:33:19.568 + Apr 5 20:33:19.576: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37" in namespace "projected-3350" to be "Succeeded or Failed" + Apr 5 20:33:19.579: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 3.264992ms + Apr 5 20:33:21.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00691942s + Apr 5 20:33:23.584: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 4.00817473s + Apr 5 20:33:25.584: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007561399s + Apr 5 20:33:27.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.007301915s + STEP: Saw pod success 04/05/23 20:33:27.583 + Apr 5 20:33:27.583: INFO: Pod "pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37" satisfied condition "Succeeded or Failed" + Apr 5 20:33:27.587: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 container projected-configmap-volume-test: + STEP: delete the pod 04/05/23 20:33:27.594 + Apr 5 20:33:27.604: INFO: Waiting for pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 to disappear + Apr 5 20:33:27.607: INFO: Pod pod-projected-configmaps-9e14ee11-8833-4ebf-9a96-f4a03796bf37 no longer exists + [AfterEach] [sig-storage] Projected configMap + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:27.607: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Projected configMap + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Projected configMap + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Projected configMap + tear down framework | framework.go:193 + STEP: Destroying namespace "projected-3350" for this suite. 04/05/23 20:33:27.612 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should retry creating failed daemon pods [Conformance] + test/e2e/apps/daemon_set.go:294 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:27.622 +Apr 5 20:33:27.622: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 20:33:27.624 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:27.639 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:27.641 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should retry creating failed daemon pods [Conformance] + test/e2e/apps/daemon_set.go:294 +STEP: Creating a simple DaemonSet "daemon-set" 04/05/23 20:33:27.666 +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:33:27.67 +Apr 5 20:33:27.675: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:27.676: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:27.676: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:27.679: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:27.679: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:28.685: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:28.686: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:28.686: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:28.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:28.690: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:29.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:29.692: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:30.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:30.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:30.689: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:30.695: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:30.695: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:31.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:31.692: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:33:32.690: 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. 04/05/23 20:33:32.693 +Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:32.715: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:32.715: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:33.726: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:33.726: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:34.727: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:34.727: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:35.726: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:35.726: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:36.725: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:36.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:37.727: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:33:37.727: 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. 04/05/23 20:33:37.727 +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:33:37.735 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-8470, will wait for the garbage collector to delete the pods 04/05/23 20:33:37.735 +Apr 5 20:33:37.801: INFO: Deleting DaemonSet.extensions daemon-set took: 8.706723ms +Apr 5 20:33:37.902: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.712657ms +Apr 5 20:33:40.009: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:40.009: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 20:33:40.012: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"153940"},"items":null} + +Apr 5 20:33:40.015: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"153940"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:40.041: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-8470" for this suite. 04/05/23 20:33:40.047 +------------------------------ +• [SLOW TEST] [12.432 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should retry creating failed daemon pods [Conformance] + test/e2e/apps/daemon_set.go:294 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:27.622 + Apr 5 20:33:27.622: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 20:33:27.624 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:27.639 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:27.641 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should retry creating failed daemon pods [Conformance] + test/e2e/apps/daemon_set.go:294 + STEP: Creating a simple DaemonSet "daemon-set" 04/05/23 20:33:27.666 + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:33:27.67 + Apr 5 20:33:27.675: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:27.676: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:27.676: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:27.679: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:27.679: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:28.685: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:28.686: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:28.686: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:28.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:28.690: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:29.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:29.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:29.692: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:30.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:30.688: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:30.689: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:30.695: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:30.695: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:31.687: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:31.692: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:31.692: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.686: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.690: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:33:32.690: 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. 04/05/23 20:33:32.693 + Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.712: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:32.715: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:32.715: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:33.722: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:33.726: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:33.726: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:34.723: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:34.727: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:34.727: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:35.722: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:35.726: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:35.726: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:36.721: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:36.725: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:36.725: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:37.723: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:37.727: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:33:37.727: 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. 04/05/23 20:33:37.727 + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:33:37.735 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-8470, will wait for the garbage collector to delete the pods 04/05/23 20:33:37.735 + Apr 5 20:33:37.801: INFO: Deleting DaemonSet.extensions daemon-set took: 8.706723ms + Apr 5 20:33:37.902: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.712657ms + Apr 5 20:33:40.009: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:40.009: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 20:33:40.012: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"153940"},"items":null} + + Apr 5 20:33:40.015: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"153940"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:40.041: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-8470" for this suite. 04/05/23 20:33:40.047 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should run and stop simple daemon [Conformance] + test/e2e/apps/daemon_set.go:166 +[BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:40.066 +Apr 5 20:33:40.066: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename daemonsets 04/05/23 20:33:40.067 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:40.091 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:40.093 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 +[It] should run and stop simple daemon [Conformance] + test/e2e/apps/daemon_set.go:166 +STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:33:40.129 +STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:33:40.135 +Apr 5 20:33:40.141: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:40.141: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:40.142: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:40.146: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:40.146: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:41.155: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:41.156: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:41.156: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:41.160: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:41.160: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:42.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:42.155: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:42.156: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:42.160: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:42.160: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:43.152: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:43.153: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:43.153: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:43.157: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Apr 5 20:33:43.157: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:44.157: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:44.157: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.158: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:33:45.158: 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. 04/05/23 20:33:45.162 +Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:45.184: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:45.184: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:46.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:46.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:46.192: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:46.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:46.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:47.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:47.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:47.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:47.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:47.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:48.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:48.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:49.201: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:49.201: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:50.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:50.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:51.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:51.190: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:51.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:51.200: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Apr 5 20:33:51.200: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 +Apr 5 20:33:52.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:52.190: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:52.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Apr 5 20:33:52.194: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Apr 5 20:33:52.195: 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:111 +STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:33:52.198 +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-3742, will wait for the garbage collector to delete the pods 04/05/23 20:33:52.198 +Apr 5 20:33:52.265: INFO: Deleting DaemonSet.extensions daemon-set took: 8.112955ms +Apr 5 20:33:52.366: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.776138ms +Apr 5 20:33:55.069: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Apr 5 20:33:55.069: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Apr 5 20:33:55.072: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"154189"},"items":null} + +Apr 5 20:33:55.075: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"154189"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:55.092: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "daemonsets-3742" for this suite. 04/05/23 20:33:55.108 +------------------------------ +• [SLOW TEST] [15.049 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should run and stop simple daemon [Conformance] + test/e2e/apps/daemon_set.go:166 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] Daemon set [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:40.066 + Apr 5 20:33:40.066: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename daemonsets 04/05/23 20:33:40.067 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:40.091 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:40.093 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:146 + [It] should run and stop simple daemon [Conformance] + test/e2e/apps/daemon_set.go:166 + STEP: Creating simple DaemonSet "daemon-set" 04/05/23 20:33:40.129 + STEP: Check that daemon pods launch on every node of the cluster. 04/05/23 20:33:40.135 + Apr 5 20:33:40.141: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:40.141: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:40.142: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:40.146: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:40.146: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:41.155: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:41.156: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:41.156: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:41.160: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:41.160: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:42.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:42.155: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:42.156: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:42.160: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:42.160: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:43.152: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:43.153: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:43.153: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:43.157: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 + Apr 5 20:33:43.157: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:44.154: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:44.157: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:44.157: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.154: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.158: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:33:45.158: 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. 04/05/23 20:33:45.162 + Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.179: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:45.184: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:45.184: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:46.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:46.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:46.192: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:46.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:46.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:47.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:47.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:47.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:47.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:47.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:48.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:48.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:48.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:49.196: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:49.201: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:49.201: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:50.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:50.195: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:50.195: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:51.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:51.190: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:51.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:51.200: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 + Apr 5 20:33:51.200: INFO: Node ttneyla26-md-0-8474989c68-jf7bt is running 0 daemon pod, expected 1 + Apr 5 20:33:52.190: INFO: DaemonSet pods can't tolerate node ttneyla26-49zvt with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:52.190: INFO: DaemonSet pods can't tolerate node ttneyla26-7rq6f with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:52.191: INFO: DaemonSet pods can't tolerate node ttneyla26-sgfb8 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node + Apr 5 20:33:52.194: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 + Apr 5 20:33:52.195: 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:111 + STEP: Deleting DaemonSet "daemon-set" 04/05/23 20:33:52.198 + STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-3742, will wait for the garbage collector to delete the pods 04/05/23 20:33:52.198 + Apr 5 20:33:52.265: INFO: Deleting DaemonSet.extensions daemon-set took: 8.112955ms + Apr 5 20:33:52.366: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.776138ms + Apr 5 20:33:55.069: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 + Apr 5 20:33:55.069: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set + Apr 5 20:33:55.072: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"154189"},"items":null} + + Apr 5 20:33:55.075: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"154189"},"items":null} + + [AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:55.092: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] Daemon set [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "daemonsets-3742" for this suite. 04/05/23 20:33:55.108 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl version + should check is all data is printed [Conformance] + test/e2e/kubectl/kubectl.go:1685 +[BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:55.137 +Apr 5 20:33:55.137: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename kubectl 04/05/23 20:33:55.138 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:55.154 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:55.157 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 +[It] should check is all data is printed [Conformance] + test/e2e/kubectl/kubectl.go:1685 +Apr 5 20:33:55.160: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8482 version' +Apr 5 20:33:55.240: 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" +Apr 5 20:33:55.240: INFO: stdout: "Client Version: version.Info{Major:\"1\", Minor:\"26\", GitVersion:\"v1.26.2\", GitCommit:\"fc04e732bb3e7198d2fa44efa5457c7c6f8c0f5b\", GitTreeState:\"clean\", BuildDate:\"2023-02-22T13:39:03Z\", GoVersion:\"go1.19.6\", Compiler:\"gc\", Platform:\"linux/amd64\"}\nKustomize Version: v4.5.7\nServer Version: version.Info{Major:\"1\", Minor:\"26\", GitVersion:\"v1.26.2-eks-c3ba22f\", GitCommit:\"c3ba22f4ce7f3130c46fc138e445f724083e0d22\", GitTreeState:\"archive\", BuildDate:\"2023-02-22T13:32:21Z\", GoVersion:\"go1.19.7\", Compiler:\"gc\", Platform:\"linux/amd64\"}\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 +Apr 5 20:33:55.240: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 +STEP: Destroying namespace "kubectl-8482" for this suite. 04/05/23 20:33:55.247 +------------------------------ +• [0.117 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl version + test/e2e/kubectl/kubectl.go:1679 + should check is all data is printed [Conformance] + test/e2e/kubectl/kubectl.go:1685 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-cli] Kubectl client + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:55.137 + Apr 5 20:33:55.137: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename kubectl 04/05/23 20:33:55.138 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:55.154 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:55.157 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:274 + [It] should check is all data is printed [Conformance] + test/e2e/kubectl/kubectl.go:1685 + Apr 5 20:33:55.160: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-2619149764 --namespace=kubectl-8482 version' + Apr 5 20:33:55.240: 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" + Apr 5 20:33:55.240: INFO: stdout: "Client Version: version.Info{Major:\"1\", Minor:\"26\", GitVersion:\"v1.26.2\", GitCommit:\"fc04e732bb3e7198d2fa44efa5457c7c6f8c0f5b\", GitTreeState:\"clean\", BuildDate:\"2023-02-22T13:39:03Z\", GoVersion:\"go1.19.6\", Compiler:\"gc\", Platform:\"linux/amd64\"}\nKustomize Version: v4.5.7\nServer Version: version.Info{Major:\"1\", Minor:\"26\", GitVersion:\"v1.26.2-eks-c3ba22f\", GitCommit:\"c3ba22f4ce7f3130c46fc138e445f724083e0d22\", GitTreeState:\"archive\", BuildDate:\"2023-02-22T13:32:21Z\", GoVersion:\"go1.19.7\", Compiler:\"gc\", Platform:\"linux/amd64\"}\n" + [AfterEach] [sig-cli] Kubectl client + test/e2e/framework/node/init/init.go:32 + Apr 5 20:33:55.240: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-cli] Kubectl client + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-cli] Kubectl client + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-cli] Kubectl client + tear down framework | framework.go:193 + STEP: Destroying namespace "kubectl-8482" for this suite. 04/05/23 20:33:55.247 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context + should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:164 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:33:55.256 +Apr 5 20:33:55.257: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context 04/05/23 20:33:55.258 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:55.279 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:55.282 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[It] should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:164 +STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser 04/05/23 20:33:55.287 +Apr 5 20:33:55.296: INFO: Waiting up to 5m0s for pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421" in namespace "security-context-2072" to be "Succeeded or Failed" +Apr 5 20:33:55.298: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.828095ms +Apr 5 20:33:57.305: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008977332s +Apr 5 20:33:59.304: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Running", Reason="", readiness=true. Elapsed: 4.008727999s +Apr 5 20:34:01.303: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Running", Reason="", readiness=false. Elapsed: 6.006951835s +Apr 5 20:34:03.304: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008673445s +STEP: Saw pod success 04/05/23 20:34:03.305 +Apr 5 20:34:03.305: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421" satisfied condition "Succeeded or Failed" +Apr 5 20:34:03.308: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 container test-container: +STEP: delete the pod 04/05/23 20:34:03.316 +Apr 5 20:34:03.329: INFO: Waiting for pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 to disappear +Apr 5 20:34:03.333: INFO: Pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 no longer exists +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 20:34:03.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-2072" for this suite. 04/05/23 20:34:03.341 +------------------------------ +• [SLOW TEST] [8.092 seconds] +[sig-node] Security Context +test/e2e/node/framework.go:23 + should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:164 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:33:55.256 + Apr 5 20:33:55.257: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context 04/05/23 20:33:55.258 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:33:55.279 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:33:55.282 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [It] should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/node/security_context.go:164 + STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser 04/05/23 20:33:55.287 + Apr 5 20:33:55.296: INFO: Waiting up to 5m0s for pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421" in namespace "security-context-2072" to be "Succeeded or Failed" + Apr 5 20:33:55.298: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.828095ms + Apr 5 20:33:57.305: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008977332s + Apr 5 20:33:59.304: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Running", Reason="", readiness=true. Elapsed: 4.008727999s + Apr 5 20:34:01.303: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Running", Reason="", readiness=false. Elapsed: 6.006951835s + Apr 5 20:34:03.304: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008673445s + STEP: Saw pod success 04/05/23 20:34:03.305 + Apr 5 20:34:03.305: INFO: Pod "security-context-27bf4761-9a64-486a-aa40-19453c19c421" satisfied condition "Succeeded or Failed" + Apr 5 20:34:03.308: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 container test-container: + STEP: delete the pod 04/05/23 20:34:03.316 + Apr 5 20:34:03.329: INFO: Waiting for pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 to disappear + Apr 5 20:34:03.333: INFO: Pod security-context-27bf4761-9a64-486a-aa40-19453c19c421 no longer exists + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 20:34:03.333: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-2072" for this suite. 04/05/23 20:34:03.341 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[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/common/node/runtime.go:248 +[BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:34:03.352 +Apr 5 20:34:03.352: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-runtime 04/05/23 20:34:03.353 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:03.368 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:03.371 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 +[It] should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:248 +STEP: create the container 04/05/23 20:34:03.374 +STEP: wait for the container to reach Succeeded 04/05/23 20:34:03.381 +STEP: get the container status 04/05/23 20:34:10.419 +STEP: the container should be terminated 04/05/23 20:34:10.424 +STEP: the termination message should be set 04/05/23 20:34:10.424 +Apr 5 20:34:10.424: INFO: Expected: &{OK} to match Container's Termination Message: OK -- +STEP: delete the container 04/05/23 20:34:10.424 +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 +Apr 5 20:34:10.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 +STEP: Destroying namespace "container-runtime-7104" for this suite. 04/05/23 20:34:10.443 +------------------------------ +• [SLOW TEST] [7.097 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:44 + on terminated container + test/e2e/common/node/runtime.go:137 + should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:248 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:34:03.352 + Apr 5 20:34:03.352: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-runtime 04/05/23 20:34:03.353 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:03.368 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:03.371 + [BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 + [It] should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:248 + STEP: create the container 04/05/23 20:34:03.374 + STEP: wait for the container to reach Succeeded 04/05/23 20:34:03.381 + STEP: get the container status 04/05/23 20:34:10.419 + STEP: the container should be terminated 04/05/23 20:34:10.424 + STEP: the termination message should be set 04/05/23 20:34:10.424 + Apr 5 20:34:10.424: INFO: Expected: &{OK} to match Container's Termination Message: OK -- + STEP: delete the container 04/05/23 20:34:10.424 + [AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 + Apr 5 20:34:10.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 + STEP: Destroying namespace "container-runtime-7104" for this suite. 04/05/23 20:34:10.443 + << End Captured GinkgoWriter Output +------------------------------ +SSSSS +------------------------------ +[sig-apps] ReplicaSet + should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/replica_set.go:111 +[BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:34:10.45 +Apr 5 20:34:10.450: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replicaset 04/05/23 20:34:10.451 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:10.469 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:10.472 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 +[It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/replica_set.go:111 +Apr 5 20:34:10.475: INFO: Creating ReplicaSet my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3 +Apr 5 20:34:10.485: INFO: Pod name my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Found 0 pods out of 1 +Apr 5 20:34:15.491: INFO: Pod name my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Found 1 pods out of 1 +Apr 5 20:34:15.491: INFO: Ensuring a pod for ReplicaSet "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3" is running +Apr 5 20:34:15.491: INFO: Waiting up to 5m0s for pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" in namespace "replicaset-5948" to be "running" +Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6": Phase="Running", Reason="", readiness=true. Elapsed: 2.6899ms +Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" satisfied condition "running" +Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:10 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:15 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:15 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:10 +0000 UTC Reason: Message:}]) +Apr 5 20:34:15.494: INFO: Trying to dial the pod +Apr 5 20:34:20.507: INFO: Controller my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Got expected result from replica 1 [my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6]: "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6", 1 of 1 required successes so far +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:34:20.507: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 +STEP: Destroying namespace "replicaset-5948" for this suite. 04/05/23 20:34:20.514 +------------------------------ +• [SLOW TEST] [10.071 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/apps/replica_set.go:111 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicaSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:34:10.45 + Apr 5 20:34:10.450: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replicaset 04/05/23 20:34:10.451 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:10.469 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:10.472 + [BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:31 + [It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/replica_set.go:111 + Apr 5 20:34:10.475: INFO: Creating ReplicaSet my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3 + Apr 5 20:34:10.485: INFO: Pod name my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Found 0 pods out of 1 + Apr 5 20:34:15.491: INFO: Pod name my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Found 1 pods out of 1 + Apr 5 20:34:15.491: INFO: Ensuring a pod for ReplicaSet "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3" is running + Apr 5 20:34:15.491: INFO: Waiting up to 5m0s for pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" in namespace "replicaset-5948" to be "running" + Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6": Phase="Running", Reason="", readiness=true. Elapsed: 2.6899ms + Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" satisfied condition "running" + Apr 5 20:34:15.494: INFO: Pod "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:10 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:15 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:15 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:34:10 +0000 UTC Reason: Message:}]) + Apr 5 20:34:15.494: INFO: Trying to dial the pod + Apr 5 20:34:20.507: INFO: Controller my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3: Got expected result from replica 1 [my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6]: "my-hostname-basic-3f5f4757-143f-45cb-92a7-7195c9ca02d3-2mrc6", 1 of 1 required successes so far + [AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:34:20.507: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicaSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicaSet + tear down framework | framework.go:193 + STEP: Destroying namespace "replicaset-5948" for this suite. 04/05/23 20:34:20.514 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should support configurable pod DNS nameservers [Conformance] + test/e2e/network/dns.go:411 +[BeforeEach] [sig-network] DNS + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:34:20.529 +Apr 5 20:34:20.530: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename dns 04/05/23 20:34:20.531 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:20.551 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:20.554 +[BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 +[It] should support configurable pod DNS nameservers [Conformance] + test/e2e/network/dns.go:411 +STEP: Creating a pod with dnsPolicy=None and customized dnsConfig... 04/05/23 20:34:20.557 +Apr 5 20:34:20.567: INFO: Created pod &Pod{ObjectMeta:{test-dns-nameservers dns-5797 cde84c88-6d5e-4793-ae9f-17e72746b57c 154520 0 2023-04-05 20:34:20 +0000 UTC map[] map[] [] [] [{e2e.test Update v1 2023-04-05 20:34:20 +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-zp75t,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[pause],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zp75t,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Apr 5 20:34:20.568: INFO: Waiting up to 5m0s for pod "test-dns-nameservers" in namespace "dns-5797" to be "running and ready" +Apr 5 20:34:20.572: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 4.030124ms +Apr 5 20:34:20.572: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:34:22.576: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008347845s +Apr 5 20:34:22.577: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:34:24.576: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008409168s +Apr 5 20:34:24.577: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:34:26.578: INFO: Pod "test-dns-nameservers": Phase="Running", Reason="", readiness=true. Elapsed: 6.009559044s +Apr 5 20:34:26.578: INFO: The phase of Pod test-dns-nameservers is Running (Ready = true) +Apr 5 20:34:26.578: INFO: Pod "test-dns-nameservers" satisfied condition "running and ready" +STEP: Verifying customized DNS suffix list is configured on pod... 04/05/23 20:34:26.578 +Apr 5 20:34:26.578: INFO: ExecWithOptions {Command:[/agnhost dns-suffix] Namespace:dns-5797 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:34:26.578: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:34:26.579: INFO: ExecWithOptions: Clientset creation +Apr 5 20:34:26.579: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/dns-5797/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... 04/05/23 20:34:26.7 +Apr 5 20:34:26.700: INFO: ExecWithOptions {Command:[/agnhost dns-server-list] Namespace:dns-5797 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Apr 5 20:34:26.700: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +Apr 5 20:34:26.702: INFO: ExecWithOptions: Clientset creation +Apr 5 20:34:26.702: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/dns-5797/pods/test-dns-nameservers/exec?command=%2Fagnhost&command=dns-server-list&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Apr 5 20:34:26.835: INFO: Deleting pod test-dns-nameservers... +[AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 +Apr 5 20:34:26.847: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 +STEP: Destroying namespace "dns-5797" for this suite. 04/05/23 20:34:26.852 +------------------------------ +• [SLOW TEST] [6.333 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should support configurable pod DNS nameservers [Conformance] + test/e2e/network/dns.go:411 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] DNS + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:34:20.529 + Apr 5 20:34:20.530: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename dns 04/05/23 20:34:20.531 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:20.551 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:20.554 + [BeforeEach] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:31 + [It] should support configurable pod DNS nameservers [Conformance] + test/e2e/network/dns.go:411 + STEP: Creating a pod with dnsPolicy=None and customized dnsConfig... 04/05/23 20:34:20.557 + Apr 5 20:34:20.567: INFO: Created pod &Pod{ObjectMeta:{test-dns-nameservers dns-5797 cde84c88-6d5e-4793-ae9f-17e72746b57c 154520 0 2023-04-05 20:34:20 +0000 UTC map[] map[] [] [] [{e2e.test Update v1 2023-04-05 20:34:20 +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-zp75t,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:registry.k8s.io/e2e-test-images/agnhost:2.43,Command:[],Args:[pause],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},Claims:[]ResourceClaim{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zp75t,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,HostUsers:nil,SchedulingGates:[]PodSchedulingGate{},ResourceClaims:[]PodResourceClaim{},},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} + Apr 5 20:34:20.568: INFO: Waiting up to 5m0s for pod "test-dns-nameservers" in namespace "dns-5797" to be "running and ready" + Apr 5 20:34:20.572: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 4.030124ms + Apr 5 20:34:20.572: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:34:22.576: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008347845s + Apr 5 20:34:22.577: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:34:24.576: INFO: Pod "test-dns-nameservers": Phase="Pending", Reason="", readiness=false. Elapsed: 4.008409168s + Apr 5 20:34:24.577: INFO: The phase of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:34:26.578: INFO: Pod "test-dns-nameservers": Phase="Running", Reason="", readiness=true. Elapsed: 6.009559044s + Apr 5 20:34:26.578: INFO: The phase of Pod test-dns-nameservers is Running (Ready = true) + Apr 5 20:34:26.578: INFO: Pod "test-dns-nameservers" satisfied condition "running and ready" + STEP: Verifying customized DNS suffix list is configured on pod... 04/05/23 20:34:26.578 + Apr 5 20:34:26.578: INFO: ExecWithOptions {Command:[/agnhost dns-suffix] Namespace:dns-5797 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:34:26.578: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:34:26.579: INFO: ExecWithOptions: Clientset creation + Apr 5 20:34:26.579: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/dns-5797/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... 04/05/23 20:34:26.7 + Apr 5 20:34:26.700: INFO: ExecWithOptions {Command:[/agnhost dns-server-list] Namespace:dns-5797 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} + Apr 5 20:34:26.700: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + Apr 5 20:34:26.702: INFO: ExecWithOptions: Clientset creation + Apr 5 20:34:26.702: INFO: ExecWithOptions: execute(POST https://10.128.0.1:443/api/v1/namespaces/dns-5797/pods/test-dns-nameservers/exec?command=%2Fagnhost&command=dns-server-list&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) + Apr 5 20:34:26.835: INFO: Deleting pod test-dns-nameservers... + [AfterEach] [sig-network] DNS + test/e2e/framework/node/init/init.go:32 + Apr 5 20:34:26.847: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] DNS + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] DNS + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] DNS + tear down framework | framework.go:193 + STEP: Destroying namespace "dns-5797" for this suite. 04/05/23 20:34:26.852 + << End Captured GinkgoWriter Output +------------------------------ +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/common/node/runtime.go:232 +[BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:34:26.863 +Apr 5 20:34:26.863: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-runtime 04/05/23 20:34:26.864 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:26.878 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:26.881 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 +[It] should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:232 +STEP: create the container 04/05/23 20:34:26.884 +STEP: wait for the container to reach Succeeded 04/05/23 20:34:26.895 +STEP: get the container status 04/05/23 20:34:33.93 +STEP: the container should be terminated 04/05/23 20:34:33.934 +STEP: the termination message should be set 04/05/23 20:34:33.934 +Apr 5 20:34:33.934: INFO: Expected: &{} to match Container's Termination Message: -- +STEP: delete the container 04/05/23 20:34:33.934 +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 +Apr 5 20:34:33.952: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 +STEP: Destroying namespace "container-runtime-4385" for this suite. 04/05/23 20:34:33.957 +------------------------------ +• [SLOW TEST] [7.100 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:44 + on terminated container + test/e2e/common/node/runtime.go:137 + should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:232 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Container Runtime + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:34:26.863 + Apr 5 20:34:26.863: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-runtime 04/05/23 20:34:26.864 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:26.878 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:26.881 + [BeforeEach] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:31 + [It] should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/common/node/runtime.go:232 + STEP: create the container 04/05/23 20:34:26.884 + STEP: wait for the container to reach Succeeded 04/05/23 20:34:26.895 + STEP: get the container status 04/05/23 20:34:33.93 + STEP: the container should be terminated 04/05/23 20:34:33.934 + STEP: the termination message should be set 04/05/23 20:34:33.934 + Apr 5 20:34:33.934: INFO: Expected: &{} to match Container's Termination Message: -- + STEP: delete the container 04/05/23 20:34:33.934 + [AfterEach] [sig-node] Container Runtime + test/e2e/framework/node/init/init.go:32 + Apr 5 20:34:33.952: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Container Runtime + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Container Runtime + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Container Runtime + tear down framework | framework.go:193 + STEP: Destroying namespace "container-runtime-4385" for this suite. 04/05/23 20:34:33.957 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/apps/statefulset.go:908 +[BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:34:33.964 +Apr 5 20:34:33.964: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename statefulset 04/05/23 20:34:33.966 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:33.983 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:33.986 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 +STEP: Creating service test in namespace statefulset-7192 04/05/23 20:34:33.99 +[It] should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/apps/statefulset.go:908 +Apr 5 20:34:34.010: INFO: Found 0 stateful pods, waiting for 1 +Apr 5 20:34:44.016: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: patching the StatefulSet 04/05/23 20:34:44.022 +W0405 20:34:44.034174 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" +Apr 5 20:34:44.042: INFO: Found 1 stateful pods, waiting for 2 +Apr 5 20:34:54.052: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Pending - Ready=false +Apr 5 20:35:04.050: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true +Apr 5 20:35:04.050: INFO: Waiting for pod test-ss-1 to enter Running - Ready=true, currently Running - Ready=true +STEP: Listing all StatefulSets 04/05/23 20:35:04.062 +STEP: Delete all of the StatefulSets 04/05/23 20:35:04.066 +STEP: Verify that StatefulSets have been deleted 04/05/23 20:35:04.074 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 +Apr 5 20:35:04.077: INFO: Deleting all statefulset in ns statefulset-7192 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:04.086: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 +STEP: Destroying namespace "statefulset-7192" for this suite. 04/05/23 20:35:04.094 +------------------------------ +• [SLOW TEST] [30.136 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:103 + should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/apps/statefulset.go:908 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] StatefulSet + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:34:33.964 + Apr 5 20:34:33.964: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename statefulset 04/05/23 20:34:33.966 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:34:33.983 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:34:33.986 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:98 + [BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:113 + STEP: Creating service test in namespace statefulset-7192 04/05/23 20:34:33.99 + [It] should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/apps/statefulset.go:908 + Apr 5 20:34:34.010: INFO: Found 0 stateful pods, waiting for 1 + Apr 5 20:34:44.016: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true + STEP: patching the StatefulSet 04/05/23 20:34:44.022 + W0405 20:34:44.034174 19 warnings.go:70] unknown field "spec.template.spec.TerminationGracePeriodSeconds" + Apr 5 20:34:44.042: INFO: Found 1 stateful pods, waiting for 2 + Apr 5 20:34:54.052: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Pending - Ready=false + Apr 5 20:35:04.050: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true + Apr 5 20:35:04.050: INFO: Waiting for pod test-ss-1 to enter Running - Ready=true, currently Running - Ready=true + STEP: Listing all StatefulSets 04/05/23 20:35:04.062 + STEP: Delete all of the StatefulSets 04/05/23 20:35:04.066 + STEP: Verify that StatefulSets have been deleted 04/05/23 20:35:04.074 + [AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:124 + Apr 5 20:35:04.077: INFO: Deleting all statefulset in ns statefulset-7192 + [AfterEach] [sig-apps] StatefulSet + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:04.086: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] StatefulSet + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] StatefulSet + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] StatefulSet + tear down framework | framework.go:193 + STEP: Destroying namespace "statefulset-7192" for this suite. 04/05/23 20:35:04.094 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-node] RuntimeClass + should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:129 +[BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:04.105 +Apr 5 20:35:04.105: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:35:04.106 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:04.124 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:04.128 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 +[It] should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:129 +Apr 5 20:35:04.152: INFO: Waiting up to 1m20s for at least 1 pods in namespace runtimeclass-8017 to be scheduled +Apr 5 20:35:04.156: INFO: 1 pods are not scheduled: [runtimeclass-8017/test-runtimeclass-runtimeclass-8017-preconfigured-handler-rxcvz(3a1a84a5-4cae-4b72-aa78-d452108029bb)] +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:06.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 +STEP: Destroying namespace "runtimeclass-8017" for this suite. 04/05/23 20:35:06.174 +------------------------------ +• [2.075 seconds] +[sig-node] RuntimeClass +test/e2e/common/node/framework.go:23 + should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:129 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:04.105 + Apr 5 20:35:04.105: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:35:04.106 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:04.124 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:04.128 + [BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 + [It] should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:129 + Apr 5 20:35:04.152: INFO: Waiting up to 1m20s for at least 1 pods in namespace runtimeclass-8017 to be scheduled + Apr 5 20:35:04.156: INFO: 1 pods are not scheduled: [runtimeclass-8017/test-runtimeclass-runtimeclass-8017-preconfigured-handler-rxcvz(3a1a84a5-4cae-4b72-aa78-d452108029bb)] + [AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:06.166: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 + STEP: Destroying namespace "runtimeclass-8017" for this suite. 04/05/23 20:35:06.174 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-node] Pods + should be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:344 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:06.183 +Apr 5 20:35:06.183: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 20:35:06.184 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:06.2 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:06.203 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:344 +STEP: creating the pod 04/05/23 20:35:06.206 +STEP: submitting the pod to kubernetes 04/05/23 20:35:06.207 +Apr 5 20:35:06.214: INFO: Waiting up to 5m0s for pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" in namespace "pods-6814" to be "running and ready" +Apr 5 20:35:06.219: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 4.940943ms +Apr 5 20:35:06.219: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:08.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010035713s +Apr 5 20:35:08.224: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:10.223: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009357252s +Apr 5 20:35:10.223: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:12.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Running", Reason="", readiness=true. Elapsed: 6.010568604s +Apr 5 20:35:12.224: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Running (Ready = true) +Apr 5 20:35:12.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" satisfied condition "running and ready" +STEP: verifying the pod is in kubernetes 04/05/23 20:35:12.228 +STEP: updating the pod 04/05/23 20:35:12.232 +Apr 5 20:35:12.747: INFO: Successfully updated pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" +Apr 5 20:35:12.747: INFO: Waiting up to 5m0s for pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" in namespace "pods-6814" to be "running" +Apr 5 20:35:12.751: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Running", Reason="", readiness=true. Elapsed: 3.447828ms +Apr 5 20:35:12.751: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" satisfied condition "running" +STEP: verifying the updated pod is in kubernetes 04/05/23 20:35:12.751 +Apr 5 20:35:12.755: INFO: Pod update OK +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:12.755: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-6814" for this suite. 04/05/23 20:35:12.762 +------------------------------ +• [SLOW TEST] [6.588 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:344 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:06.183 + Apr 5 20:35:06.183: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 20:35:06.184 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:06.2 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:06.203 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should be updated [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:344 + STEP: creating the pod 04/05/23 20:35:06.206 + STEP: submitting the pod to kubernetes 04/05/23 20:35:06.207 + Apr 5 20:35:06.214: INFO: Waiting up to 5m0s for pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" in namespace "pods-6814" to be "running and ready" + Apr 5 20:35:06.219: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 4.940943ms + Apr 5 20:35:06.219: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:08.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010035713s + Apr 5 20:35:08.224: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:10.223: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Pending", Reason="", readiness=false. Elapsed: 4.009357252s + Apr 5 20:35:10.223: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:12.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Running", Reason="", readiness=true. Elapsed: 6.010568604s + Apr 5 20:35:12.224: INFO: The phase of Pod pod-update-0cde04e0-b8fe-4433-a748-310c12317588 is Running (Ready = true) + Apr 5 20:35:12.224: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" satisfied condition "running and ready" + STEP: verifying the pod is in kubernetes 04/05/23 20:35:12.228 + STEP: updating the pod 04/05/23 20:35:12.232 + Apr 5 20:35:12.747: INFO: Successfully updated pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" + Apr 5 20:35:12.747: INFO: Waiting up to 5m0s for pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" in namespace "pods-6814" to be "running" + Apr 5 20:35:12.751: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588": Phase="Running", Reason="", readiness=true. Elapsed: 3.447828ms + Apr 5 20:35:12.751: INFO: Pod "pod-update-0cde04e0-b8fe-4433-a748-310c12317588" satisfied condition "running" + STEP: verifying the updated pod is in kubernetes 04/05/23 20:35:12.751 + Apr 5 20:35:12.755: INFO: Pod update OK + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:12.755: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-6814" for this suite. 04/05/23 20:35:12.762 + << End Captured GinkgoWriter Output +------------------------------ +SSS +------------------------------ +[sig-node] Secrets + should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:46 +[BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:12.773 +Apr 5 20:35:12.773: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:35:12.774 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:12.914 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:12.917 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:46 +STEP: Creating secret with name secret-test-11461086-336a-48a8-bcdd-626e439608f3 04/05/23 20:35:12.92 +STEP: Creating a pod to test consume secrets 04/05/23 20:35:12.925 +Apr 5 20:35:12.935: INFO: Waiting up to 5m0s for pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e" in namespace "secrets-2819" to be "Succeeded or Failed" +Apr 5 20:35:12.938: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 3.057572ms +Apr 5 20:35:14.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007767461s +Apr 5 20:35:16.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007350928s +Apr 5 20:35:18.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008228742s +Apr 5 20:35:20.944: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008262098s +STEP: Saw pod success 04/05/23 20:35:20.944 +Apr 5 20:35:20.944: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e" satisfied condition "Succeeded or Failed" +Apr 5 20:35:20.947: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e container secret-env-test: +STEP: delete the pod 04/05/23 20:35:20.957 +Apr 5 20:35:20.975: INFO: Waiting for pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e to disappear +Apr 5 20:35:20.979: INFO: Pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e no longer exists +[AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:20.979: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-2819" for this suite. 04/05/23 20:35:20.984 +------------------------------ +• [SLOW TEST] [8.218 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:46 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:12.773 + Apr 5 20:35:12.773: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:35:12.774 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:12.914 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:12.917 + [BeforeEach] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/common/node/secrets.go:46 + STEP: Creating secret with name secret-test-11461086-336a-48a8-bcdd-626e439608f3 04/05/23 20:35:12.92 + STEP: Creating a pod to test consume secrets 04/05/23 20:35:12.925 + Apr 5 20:35:12.935: INFO: Waiting up to 5m0s for pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e" in namespace "secrets-2819" to be "Succeeded or Failed" + Apr 5 20:35:12.938: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 3.057572ms + Apr 5 20:35:14.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007767461s + Apr 5 20:35:16.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007350928s + Apr 5 20:35:18.943: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008228742s + Apr 5 20:35:20.944: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008262098s + STEP: Saw pod success 04/05/23 20:35:20.944 + Apr 5 20:35:20.944: INFO: Pod "pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e" satisfied condition "Succeeded or Failed" + Apr 5 20:35:20.947: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e container secret-env-test: + STEP: delete the pod 04/05/23 20:35:20.957 + Apr 5 20:35:20.975: INFO: Waiting for pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e to disappear + Apr 5 20:35:20.979: INFO: Pod pod-secrets-3bc11e11-c151-4d2c-8834-11e3f880a61e no longer exists + [AfterEach] [sig-node] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:20.979: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-2819" for this suite. 04/05/23 20:35:20.984 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSS +------------------------------ +[sig-node] Pods + should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:618 +[BeforeEach] [sig-node] Pods + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:20.997 +Apr 5 20:35:20.997: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename pods 04/05/23 20:35:20.998 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:21.015 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:21.018 +[BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 +[It] should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:618 +Apr 5 20:35:21.021: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: creating the pod 04/05/23 20:35:21.022 +STEP: submitting the pod to kubernetes 04/05/23 20:35:21.022 +Apr 5 20:35:21.030: INFO: Waiting up to 5m0s for pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b" in namespace "pods-3763" to be "running and ready" +Apr 5 20:35:21.033: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.690934ms +Apr 5 20:35:21.033: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:23.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00843194s +Apr 5 20:35:23.039: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:25.038: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007323754s +Apr 5 20:35:25.038: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) +Apr 5 20:35:27.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Running", Reason="", readiness=true. Elapsed: 6.008387578s +Apr 5 20:35:27.039: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Running (Ready = true) +Apr 5 20:35:27.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b" satisfied condition "running and ready" +[AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:27.064: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 +STEP: Destroying namespace "pods-3763" for this suite. 04/05/23 20:35:27.069 +------------------------------ +• [SLOW TEST] [6.080 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:618 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Pods + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:20.997 + Apr 5 20:35:20.997: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename pods 04/05/23 20:35:20.998 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:21.015 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:21.018 + [BeforeEach] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:194 + [It] should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/common/node/pods.go:618 + Apr 5 20:35:21.021: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: creating the pod 04/05/23 20:35:21.022 + STEP: submitting the pod to kubernetes 04/05/23 20:35:21.022 + Apr 5 20:35:21.030: INFO: Waiting up to 5m0s for pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b" in namespace "pods-3763" to be "running and ready" + Apr 5 20:35:21.033: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.690934ms + Apr 5 20:35:21.033: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:23.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00843194s + Apr 5 20:35:23.039: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:25.038: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007323754s + Apr 5 20:35:25.038: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Pending, waiting for it to be Running (with Ready = true) + Apr 5 20:35:27.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b": Phase="Running", Reason="", readiness=true. Elapsed: 6.008387578s + Apr 5 20:35:27.039: INFO: The phase of Pod pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b is Running (Ready = true) + Apr 5 20:35:27.039: INFO: Pod "pod-logs-websocket-eee8303c-75e1-4bb7-a7c8-435e6e1b7f0b" satisfied condition "running and ready" + [AfterEach] [sig-node] Pods + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:27.064: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Pods + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Pods + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Pods + tear down framework | framework.go:193 + STEP: Destroying namespace "pods-3763" for this suite. 04/05/23 20:35:27.069 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSS +------------------------------ +[sig-node] Security Context When creating a pod with readOnlyRootFilesystem + should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:486 +[BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:27.083 +Apr 5 20:35:27.083: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename security-context-test 04/05/23 20:35:27.084 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:27.1 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:27.103 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 +[It] should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:486 +Apr 5 20:35:27.116: INFO: Waiting up to 5m0s for pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143" in namespace "security-context-test-6268" to be "Succeeded or Failed" +Apr 5 20:35:27.119: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 3.159686ms +Apr 5 20:35:29.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00861022s +Apr 5 20:35:31.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007782644s +Apr 5 20:35:33.123: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007593784s +Apr 5 20:35:35.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008332174s +Apr 5 20:35:35.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:35.124: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 +STEP: Destroying namespace "security-context-test-6268" for this suite. 04/05/23 20:35:35.131 +------------------------------ +• [SLOW TEST] [8.055 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:430 + should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:486 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Security Context + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:27.083 + Apr 5 20:35:27.083: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename security-context-test 04/05/23 20:35:27.084 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:27.1 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:27.103 + [BeforeEach] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:50 + [It] should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/common/node/security_context.go:486 + Apr 5 20:35:27.116: INFO: Waiting up to 5m0s for pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143" in namespace "security-context-test-6268" to be "Succeeded or Failed" + Apr 5 20:35:27.119: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 3.159686ms + Apr 5 20:35:29.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00861022s + Apr 5 20:35:31.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007782644s + Apr 5 20:35:33.123: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Pending", Reason="", readiness=false. Elapsed: 6.007593784s + Apr 5 20:35:35.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.008332174s + Apr 5 20:35:35.124: INFO: Pod "busybox-readonly-false-7b507682-3c58-4857-ba90-a52c69205143" satisfied condition "Succeeded or Failed" + [AfterEach] [sig-node] Security Context + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:35.124: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Security Context + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Security Context + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Security Context + tear down framework | framework.go:193 + STEP: Destroying namespace "security-context-test-6268" for this suite. 04/05/23 20:35:35.131 + << End Captured GinkgoWriter Output +------------------------------ +[sig-storage] Downward API volume + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:193 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:35.141 +Apr 5 20:35:35.142: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:35:35.143 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:35.159 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:35.162 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:193 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:35:35.165 +Apr 5 20:35:35.174: INFO: Waiting up to 5m0s for pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f" in namespace "downward-api-6313" to be "Succeeded or Failed" +Apr 5 20:35:35.177: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 3.240269ms +Apr 5 20:35:37.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008652435s +Apr 5 20:35:39.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.0092464s +Apr 5 20:35:41.182: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008033261s +Apr 5 20:35:43.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009300673s +STEP: Saw pod success 04/05/23 20:35:43.183 +Apr 5 20:35:43.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f" satisfied condition "Succeeded or Failed" +Apr 5 20:35:43.188: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f container client-container: +STEP: delete the pod 04/05/23 20:35:43.197 +Apr 5 20:35:43.207: INFO: Waiting for pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f to disappear +Apr 5 20:35:43.210: INFO: Pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:43.211: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-6313" for this suite. 04/05/23 20:35:43.216 +------------------------------ +• [SLOW TEST] [8.080 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:193 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:35.141 + Apr 5 20:35:35.142: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:35:35.143 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:35.159 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:35.162 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:193 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:35:35.165 + Apr 5 20:35:35.174: INFO: Waiting up to 5m0s for pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f" in namespace "downward-api-6313" to be "Succeeded or Failed" + Apr 5 20:35:35.177: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 3.240269ms + Apr 5 20:35:37.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008652435s + Apr 5 20:35:39.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.0092464s + Apr 5 20:35:41.182: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Pending", Reason="", readiness=false. Elapsed: 6.008033261s + Apr 5 20:35:43.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.009300673s + STEP: Saw pod success 04/05/23 20:35:43.183 + Apr 5 20:35:43.183: INFO: Pod "downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f" satisfied condition "Succeeded or Failed" + Apr 5 20:35:43.188: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f container client-container: + STEP: delete the pod 04/05/23 20:35:43.197 + Apr 5 20:35:43.207: INFO: Waiting for pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f to disappear + Apr 5 20:35:43.210: INFO: Pod downwardapi-volume-1cf40c4b-62f9-4062-a49a-fb4cd946427f no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:43.211: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-6313" for this suite. 04/05/23 20:35:43.216 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-api-machinery] Watchers + should receive events on concurrent watches in same order [Conformance] + test/e2e/apimachinery/watch.go:334 +[BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:43.226 +Apr 5 20:35:43.226: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename watch 04/05/23 20:35:43.227 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:43.242 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:43.245 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 +[It] should receive events on concurrent watches in same order [Conformance] + test/e2e/apimachinery/watch.go:334 +STEP: getting a starting resourceVersion 04/05/23 20:35:43.248 +STEP: starting a background goroutine to produce watch events 04/05/23 20:35:43.251 +STEP: creating watches starting from each resource version of the events produced and verifying they all receive resource versions in the same order 04/05/23 20:35:43.251 +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:46.032: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 +STEP: Destroying namespace "watch-805" for this suite. 04/05/23 20:35:46.084 +------------------------------ +• [2.909 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should receive events on concurrent watches in same order [Conformance] + test/e2e/apimachinery/watch.go:334 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-api-machinery] Watchers + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:43.226 + Apr 5 20:35:43.226: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename watch 04/05/23 20:35:43.227 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:43.242 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:43.245 + [BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:31 + [It] should receive events on concurrent watches in same order [Conformance] + test/e2e/apimachinery/watch.go:334 + STEP: getting a starting resourceVersion 04/05/23 20:35:43.248 + STEP: starting a background goroutine to produce watch events 04/05/23 20:35:43.251 + STEP: creating watches starting from each resource version of the events produced and verifying they all receive resource versions in the same order 04/05/23 20:35:43.251 + [AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:46.032: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-api-machinery] Watchers + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-api-machinery] Watchers + tear down framework | framework.go:193 + STEP: Destroying namespace "watch-805" for this suite. 04/05/23 20:35:46.084 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-apps] ReplicationController + should release no longer matching pods [Conformance] + test/e2e/apps/rc.go:101 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:46.136 +Apr 5 20:35:46.136: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 20:35:46.137 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:46.152 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:46.155 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should release no longer matching pods [Conformance] + test/e2e/apps/rc.go:101 +STEP: Given a ReplicationController is created 04/05/23 20:35:46.158 +STEP: When the matched label of one of its pods change 04/05/23 20:35:46.165 +Apr 5 20:35:46.169: INFO: Pod name pod-release: Found 0 pods out of 1 +Apr 5 20:35:51.173: INFO: Pod name pod-release: Found 1 pods out of 1 +STEP: Then the pod is released 04/05/23 20:35:51.184 +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 20:35:52.193: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-6966" for this suite. 04/05/23 20:35:52.199 +------------------------------ +• [SLOW TEST] [6.072 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should release no longer matching pods [Conformance] + test/e2e/apps/rc.go:101 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:46.136 + Apr 5 20:35:46.136: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 20:35:46.137 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:46.152 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:46.155 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should release no longer matching pods [Conformance] + test/e2e/apps/rc.go:101 + STEP: Given a ReplicationController is created 04/05/23 20:35:46.158 + STEP: When the matched label of one of its pods change 04/05/23 20:35:46.165 + Apr 5 20:35:46.169: INFO: Pod name pod-release: Found 0 pods out of 1 + Apr 5 20:35:51.173: INFO: Pod name pod-release: Found 1 pods out of 1 + STEP: Then the pod is released 04/05/23 20:35:51.184 + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 20:35:52.193: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-6966" for this suite. 04/05/23 20:35:52.199 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSS +------------------------------ +[sig-network] Service endpoints latency + should not be very high [Conformance] + test/e2e/network/service_latency.go:59 +[BeforeEach] [sig-network] Service endpoints latency + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:35:52.212 +Apr 5 20:35:52.212: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename svc-latency 04/05/23 20:35:52.213 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:52.229 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:52.232 +[BeforeEach] [sig-network] Service endpoints latency + test/e2e/framework/metrics/init/init.go:31 +[It] should not be very high [Conformance] + test/e2e/network/service_latency.go:59 +Apr 5 20:35:52.235: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: creating replication controller svc-latency-rc in namespace svc-latency-3797 04/05/23 20:35:52.237 +I0405 20:35:52.243750 19 runners.go:193] Created replication controller with name: svc-latency-rc, namespace: svc-latency-3797, replica count: 1 +I0405 20:35:53.295811 19 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 +I0405 20:35:54.296419 19 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 +I0405 20:35:55.296811 19 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 +I0405 20:35:56.297365 19 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 +I0405 20:35:57.297698 19 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 +I0405 20:35:58.297947 19 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 +Apr 5 20:35:58.419: INFO: Created: latency-svc-j9df2 +Apr 5 20:35:58.427: INFO: Got endpoints: latency-svc-j9df2 [28.473239ms] +Apr 5 20:35:58.455: INFO: Created: latency-svc-lpm64 +Apr 5 20:35:58.459: INFO: Got endpoints: latency-svc-lpm64 [31.507667ms] +Apr 5 20:35:58.468: INFO: Created: latency-svc-qzrz6 +Apr 5 20:35:58.474: INFO: Got endpoints: latency-svc-qzrz6 [46.151923ms] +Apr 5 20:35:58.480: INFO: Created: latency-svc-9n5xp +Apr 5 20:35:58.484: INFO: Got endpoints: latency-svc-9n5xp [55.468397ms] +Apr 5 20:35:58.496: INFO: Created: latency-svc-8skc8 +Apr 5 20:35:58.503: INFO: Got endpoints: latency-svc-8skc8 [74.067848ms] +Apr 5 20:35:58.517: INFO: Created: latency-svc-ddbks +Apr 5 20:35:58.522: INFO: Got endpoints: latency-svc-ddbks [93.320001ms] +Apr 5 20:35:58.529: INFO: Created: latency-svc-2qzrk +Apr 5 20:35:58.538: INFO: Got endpoints: latency-svc-2qzrk [108.658995ms] +Apr 5 20:35:58.554: INFO: Created: latency-svc-42cvh +Apr 5 20:35:58.563: INFO: Created: latency-svc-4q7w5 +Apr 5 20:35:58.564: INFO: Got endpoints: latency-svc-42cvh [134.666064ms] +Apr 5 20:35:58.567: INFO: Got endpoints: latency-svc-4q7w5 [137.834001ms] +Apr 5 20:35:58.579: INFO: Created: latency-svc-4ddwl +Apr 5 20:35:58.585: INFO: Got endpoints: latency-svc-4ddwl [156.604161ms] +Apr 5 20:35:58.598: INFO: Created: latency-svc-lbbsr +Apr 5 20:35:58.605: INFO: Got endpoints: latency-svc-lbbsr [175.625156ms] +Apr 5 20:35:58.612: INFO: Created: latency-svc-sd6cr +Apr 5 20:35:58.623: INFO: Got endpoints: latency-svc-sd6cr [192.206107ms] +Apr 5 20:35:58.626: INFO: Created: latency-svc-cdtqg +Apr 5 20:35:58.635: INFO: Got endpoints: latency-svc-cdtqg [204.069014ms] +Apr 5 20:35:58.666: INFO: Created: latency-svc-lzpjx +Apr 5 20:35:58.671: INFO: Got endpoints: latency-svc-lzpjx [240.868607ms] +Apr 5 20:35:58.687: INFO: Created: latency-svc-dxbhn +Apr 5 20:35:58.690: INFO: Got endpoints: latency-svc-dxbhn [260.085072ms] +Apr 5 20:35:58.700: INFO: Created: latency-svc-hk5cx +Apr 5 20:35:58.706: INFO: Got endpoints: latency-svc-hk5cx [276.302643ms] +Apr 5 20:35:58.713: INFO: Created: latency-svc-ppc2x +Apr 5 20:35:58.719: INFO: Got endpoints: latency-svc-ppc2x [259.319656ms] +Apr 5 20:35:58.725: INFO: Created: latency-svc-d5n9x +Apr 5 20:35:58.729: INFO: Got endpoints: latency-svc-d5n9x [254.127977ms] +Apr 5 20:35:58.739: INFO: Created: latency-svc-8wchc +Apr 5 20:35:58.741: INFO: Got endpoints: latency-svc-8wchc [256.932392ms] +Apr 5 20:35:58.754: INFO: Created: latency-svc-tccbx +Apr 5 20:35:58.761: INFO: Got endpoints: latency-svc-tccbx [257.756907ms] +Apr 5 20:35:58.769: INFO: Created: latency-svc-48tqs +Apr 5 20:35:58.773: INFO: Got endpoints: latency-svc-48tqs [250.548134ms] +Apr 5 20:35:58.784: INFO: Created: latency-svc-wvk5w +Apr 5 20:35:58.793: INFO: Got endpoints: latency-svc-wvk5w [254.525575ms] +Apr 5 20:35:58.801: INFO: Created: latency-svc-p2jfp +Apr 5 20:35:58.810: INFO: Got endpoints: latency-svc-p2jfp [245.720723ms] +Apr 5 20:35:58.813: INFO: Created: latency-svc-ddpk4 +Apr 5 20:35:58.819: INFO: Got endpoints: latency-svc-ddpk4 [251.378764ms] +Apr 5 20:35:58.828: INFO: Created: latency-svc-8z4s9 +Apr 5 20:35:58.834: INFO: Got endpoints: latency-svc-8z4s9 [248.668606ms] +Apr 5 20:35:58.844: INFO: Created: latency-svc-thbrx +Apr 5 20:35:58.854: INFO: Got endpoints: latency-svc-thbrx [248.38867ms] +Apr 5 20:35:58.858: INFO: Created: latency-svc-h6w29 +Apr 5 20:35:58.863: INFO: Got endpoints: latency-svc-h6w29 [240.505123ms] +Apr 5 20:35:58.873: INFO: Created: latency-svc-tlhsg +Apr 5 20:35:58.882: INFO: Got endpoints: latency-svc-tlhsg [246.898423ms] +Apr 5 20:35:58.894: INFO: Created: latency-svc-6ljjf +Apr 5 20:35:58.901: INFO: Got endpoints: latency-svc-6ljjf [229.84011ms] +Apr 5 20:35:58.907: INFO: Created: latency-svc-25knn +Apr 5 20:35:58.914: INFO: Got endpoints: latency-svc-25knn [223.206458ms] +Apr 5 20:35:58.924: INFO: Created: latency-svc-mhcjc +Apr 5 20:35:58.932: INFO: Got endpoints: latency-svc-mhcjc [225.135212ms] +Apr 5 20:35:58.941: INFO: Created: latency-svc-llh47 +Apr 5 20:35:58.947: INFO: Got endpoints: latency-svc-llh47 [228.225998ms] +Apr 5 20:35:58.959: INFO: Created: latency-svc-55lqz +Apr 5 20:35:58.966: INFO: Got endpoints: latency-svc-55lqz [236.417335ms] +Apr 5 20:35:58.970: INFO: Created: latency-svc-6tvrx +Apr 5 20:35:58.976: INFO: Got endpoints: latency-svc-6tvrx [235.186951ms] +Apr 5 20:35:58.988: INFO: Created: latency-svc-b5jjf +Apr 5 20:35:58.996: INFO: Got endpoints: latency-svc-b5jjf [234.728582ms] +Apr 5 20:35:59.008: INFO: Created: latency-svc-dnqlc +Apr 5 20:35:59.019: INFO: Got endpoints: latency-svc-dnqlc [246.460046ms] +Apr 5 20:35:59.023: INFO: Created: latency-svc-fd4b8 +Apr 5 20:35:59.030: INFO: Got endpoints: latency-svc-fd4b8 [237.253881ms] +Apr 5 20:35:59.040: INFO: Created: latency-svc-krrst +Apr 5 20:35:59.049: INFO: Got endpoints: latency-svc-krrst [238.438218ms] +Apr 5 20:35:59.053: INFO: Created: latency-svc-ptn6t +Apr 5 20:35:59.063: INFO: Got endpoints: latency-svc-ptn6t [244.482994ms] +Apr 5 20:35:59.071: INFO: Created: latency-svc-gwml7 +Apr 5 20:35:59.077: INFO: Got endpoints: latency-svc-gwml7 [242.793377ms] +Apr 5 20:35:59.104: INFO: Created: latency-svc-99nr8 +Apr 5 20:35:59.108: INFO: Got endpoints: latency-svc-99nr8 [254.373368ms] +Apr 5 20:35:59.111: INFO: Created: latency-svc-8vnbt +Apr 5 20:35:59.119: INFO: Got endpoints: latency-svc-8vnbt [255.246826ms] +Apr 5 20:35:59.127: INFO: Created: latency-svc-xmmnm +Apr 5 20:35:59.131: INFO: Got endpoints: latency-svc-xmmnm [249.752365ms] +Apr 5 20:35:59.144: INFO: Created: latency-svc-qd9hp +Apr 5 20:35:59.152: INFO: Got endpoints: latency-svc-qd9hp [251.102534ms] +Apr 5 20:35:59.158: INFO: Created: latency-svc-c4sgm +Apr 5 20:35:59.168: INFO: Created: latency-svc-zpzgg +Apr 5 20:35:59.174: INFO: Got endpoints: latency-svc-c4sgm [260.507243ms] +Apr 5 20:35:59.186: INFO: Created: latency-svc-hv5xf +Apr 5 20:35:59.205: INFO: Created: latency-svc-x8479 +Apr 5 20:35:59.227: INFO: Created: latency-svc-5mndt +Apr 5 20:35:59.228: INFO: Got endpoints: latency-svc-zpzgg [296.193351ms] +Apr 5 20:35:59.244: INFO: Created: latency-svc-7cl6f +Apr 5 20:35:59.255: INFO: Created: latency-svc-bcc84 +Apr 5 20:35:59.276: INFO: Created: latency-svc-c7v8z +Apr 5 20:35:59.278: INFO: Got endpoints: latency-svc-hv5xf [330.345435ms] +Apr 5 20:35:59.290: INFO: Created: latency-svc-btxbz +Apr 5 20:35:59.304: INFO: Created: latency-svc-sbjfj +Apr 5 20:35:59.318: INFO: Created: latency-svc-kw7k5 +Apr 5 20:35:59.325: INFO: Got endpoints: latency-svc-x8479 [359.407777ms] +Apr 5 20:35:59.335: INFO: Created: latency-svc-phl78 +Apr 5 20:35:59.347: INFO: Created: latency-svc-lvmb8 +Apr 5 20:35:59.363: INFO: Created: latency-svc-vgrdf +Apr 5 20:35:59.374: INFO: Got endpoints: latency-svc-5mndt [398.222132ms] +Apr 5 20:35:59.381: INFO: Created: latency-svc-f2bnq +Apr 5 20:35:59.391: INFO: Created: latency-svc-wzl6g +Apr 5 20:35:59.405: INFO: Created: latency-svc-j2h4t +Apr 5 20:35:59.419: INFO: Created: latency-svc-vtd6g +Apr 5 20:35:59.428: INFO: Got endpoints: latency-svc-7cl6f [431.637077ms] +Apr 5 20:35:59.432: INFO: Created: latency-svc-jlx45 +Apr 5 20:35:59.452: INFO: Created: latency-svc-w5nmm +Apr 5 20:35:59.465: INFO: Created: latency-svc-z57cd +Apr 5 20:35:59.474: INFO: Got endpoints: latency-svc-bcc84 [454.417844ms] +Apr 5 20:35:59.508: INFO: Created: latency-svc-6t2fk +Apr 5 20:35:59.529: INFO: Got endpoints: latency-svc-c7v8z [498.438243ms] +Apr 5 20:35:59.549: INFO: Created: latency-svc-z2xj9 +Apr 5 20:35:59.574: INFO: Got endpoints: latency-svc-btxbz [524.7809ms] +Apr 5 20:35:59.595: INFO: Created: latency-svc-dw4bz +Apr 5 20:35:59.625: INFO: Got endpoints: latency-svc-sbjfj [561.177537ms] +Apr 5 20:35:59.645: INFO: Created: latency-svc-t56zp +Apr 5 20:35:59.675: INFO: Got endpoints: latency-svc-kw7k5 [597.530288ms] +Apr 5 20:35:59.694: INFO: Created: latency-svc-whk9h +Apr 5 20:35:59.726: INFO: Got endpoints: latency-svc-phl78 [617.454794ms] +Apr 5 20:35:59.747: INFO: Created: latency-svc-p6fv8 +Apr 5 20:35:59.775: INFO: Got endpoints: latency-svc-lvmb8 [655.670136ms] +Apr 5 20:35:59.793: INFO: Created: latency-svc-6m8lh +Apr 5 20:35:59.826: INFO: Got endpoints: latency-svc-vgrdf [694.357207ms] +Apr 5 20:35:59.847: INFO: Created: latency-svc-cq5dw +Apr 5 20:35:59.882: INFO: Got endpoints: latency-svc-f2bnq [729.978711ms] +Apr 5 20:35:59.903: INFO: Created: latency-svc-29shp +Apr 5 20:35:59.926: INFO: Got endpoints: latency-svc-wzl6g [751.509329ms] +Apr 5 20:35:59.944: INFO: Created: latency-svc-922jp +Apr 5 20:35:59.976: INFO: Got endpoints: latency-svc-j2h4t [747.455939ms] +Apr 5 20:35:59.994: INFO: Created: latency-svc-j6t6c +Apr 5 20:36:00.026: INFO: Got endpoints: latency-svc-vtd6g [748.107149ms] +Apr 5 20:36:00.045: INFO: Created: latency-svc-585ds +Apr 5 20:36:00.074: INFO: Got endpoints: latency-svc-jlx45 [749.399181ms] +Apr 5 20:36:00.098: INFO: Created: latency-svc-vc6ws +Apr 5 20:36:00.127: INFO: Got endpoints: latency-svc-w5nmm [752.481377ms] +Apr 5 20:36:00.147: INFO: Created: latency-svc-fmzqb +Apr 5 20:36:00.176: INFO: Got endpoints: latency-svc-z57cd [747.929227ms] +Apr 5 20:36:00.196: INFO: Created: latency-svc-tl6r5 +Apr 5 20:36:00.223: INFO: Got endpoints: latency-svc-6t2fk [748.89719ms] +Apr 5 20:36:00.246: INFO: Created: latency-svc-qlbjz +Apr 5 20:36:00.277: INFO: Got endpoints: latency-svc-z2xj9 [748.271327ms] +Apr 5 20:36:00.294: INFO: Created: latency-svc-54zbr +Apr 5 20:36:00.325: INFO: Got endpoints: latency-svc-dw4bz [750.636622ms] +Apr 5 20:36:00.346: INFO: Created: latency-svc-5vss5 +Apr 5 20:36:00.375: INFO: Got endpoints: latency-svc-t56zp [750.401687ms] +Apr 5 20:36:00.395: INFO: Created: latency-svc-qb6dj +Apr 5 20:36:00.425: INFO: Got endpoints: latency-svc-whk9h [749.684112ms] +Apr 5 20:36:00.449: INFO: Created: latency-svc-px7pw +Apr 5 20:36:00.477: INFO: Got endpoints: latency-svc-p6fv8 [751.005055ms] +Apr 5 20:36:00.502: INFO: Created: latency-svc-7jbb7 +Apr 5 20:36:00.524: INFO: Got endpoints: latency-svc-6m8lh [749.379182ms] +Apr 5 20:36:00.543: INFO: Created: latency-svc-hp7sp +Apr 5 20:36:00.577: INFO: Got endpoints: latency-svc-cq5dw [751.358906ms] +Apr 5 20:36:00.596: INFO: Created: latency-svc-nps85 +Apr 5 20:36:00.626: INFO: Got endpoints: latency-svc-29shp [743.871666ms] +Apr 5 20:36:00.649: INFO: Created: latency-svc-5zwhs +Apr 5 20:36:00.674: INFO: Got endpoints: latency-svc-922jp [747.676699ms] +Apr 5 20:36:00.693: INFO: Created: latency-svc-gmgg5 +Apr 5 20:36:00.726: INFO: Got endpoints: latency-svc-j6t6c [750.389281ms] +Apr 5 20:36:00.744: INFO: Created: latency-svc-splf9 +Apr 5 20:36:00.779: INFO: Got endpoints: latency-svc-585ds [752.347751ms] +Apr 5 20:36:00.798: INFO: Created: latency-svc-vdqjb +Apr 5 20:36:00.825: INFO: Got endpoints: latency-svc-vc6ws [750.802333ms] +Apr 5 20:36:00.844: INFO: Created: latency-svc-b7jrc +Apr 5 20:36:00.876: INFO: Got endpoints: latency-svc-fmzqb [748.546329ms] +Apr 5 20:36:00.901: INFO: Created: latency-svc-vhhc2 +Apr 5 20:36:00.925: INFO: Got endpoints: latency-svc-tl6r5 [748.999689ms] +Apr 5 20:36:00.945: INFO: Created: latency-svc-b4f7d +Apr 5 20:36:00.974: INFO: Got endpoints: latency-svc-qlbjz [750.671214ms] +Apr 5 20:36:00.992: INFO: Created: latency-svc-4dhk4 +Apr 5 20:36:01.025: INFO: Got endpoints: latency-svc-54zbr [747.514561ms] +Apr 5 20:36:01.045: INFO: Created: latency-svc-hswnt +Apr 5 20:36:01.077: INFO: Got endpoints: latency-svc-5vss5 [752.096356ms] +Apr 5 20:36:01.107: INFO: Created: latency-svc-jvgzr +Apr 5 20:36:01.131: INFO: Got endpoints: latency-svc-qb6dj [755.347254ms] +Apr 5 20:36:01.156: INFO: Created: latency-svc-4hlqc +Apr 5 20:36:01.176: INFO: Got endpoints: latency-svc-px7pw [751.165621ms] +Apr 5 20:36:01.219: INFO: Created: latency-svc-vnhmk +Apr 5 20:36:01.224: INFO: Got endpoints: latency-svc-7jbb7 [746.64138ms] +Apr 5 20:36:01.253: INFO: Created: latency-svc-rxjrh +Apr 5 20:36:01.274: INFO: Got endpoints: latency-svc-hp7sp [749.176988ms] +Apr 5 20:36:01.303: INFO: Created: latency-svc-8pqrb +Apr 5 20:36:01.326: INFO: Got endpoints: latency-svc-nps85 [748.768169ms] +Apr 5 20:36:01.342: INFO: Created: latency-svc-bq69d +Apr 5 20:36:01.376: INFO: Got endpoints: latency-svc-5zwhs [746.708076ms] +Apr 5 20:36:01.398: INFO: Created: latency-svc-zzqgq +Apr 5 20:36:01.427: INFO: Got endpoints: latency-svc-gmgg5 [752.836969ms] +Apr 5 20:36:01.443: INFO: Created: latency-svc-jk5hm +Apr 5 20:36:01.476: INFO: Got endpoints: latency-svc-splf9 [749.365568ms] +Apr 5 20:36:01.495: INFO: Created: latency-svc-nrx48 +Apr 5 20:36:01.526: INFO: Got endpoints: latency-svc-vdqjb [747.256086ms] +Apr 5 20:36:01.545: INFO: Created: latency-svc-trqf5 +Apr 5 20:36:01.574: INFO: Got endpoints: latency-svc-b7jrc [748.921582ms] +Apr 5 20:36:01.590: INFO: Created: latency-svc-pz94t +Apr 5 20:36:01.626: INFO: Got endpoints: latency-svc-vhhc2 [750.878376ms] +Apr 5 20:36:01.642: INFO: Created: latency-svc-tlntf +Apr 5 20:36:01.674: INFO: Got endpoints: latency-svc-b4f7d [749.074056ms] +Apr 5 20:36:01.691: INFO: Created: latency-svc-bqztc +Apr 5 20:36:01.725: INFO: Got endpoints: latency-svc-4dhk4 [750.604708ms] +Apr 5 20:36:01.740: INFO: Created: latency-svc-jwmn2 +Apr 5 20:36:01.777: INFO: Got endpoints: latency-svc-hswnt [751.560737ms] +Apr 5 20:36:01.793: INFO: Created: latency-svc-9hxr2 +Apr 5 20:36:01.825: INFO: Got endpoints: latency-svc-jvgzr [748.001371ms] +Apr 5 20:36:01.842: INFO: Created: latency-svc-97flg +Apr 5 20:36:01.874: INFO: Got endpoints: latency-svc-4hlqc [742.510555ms] +Apr 5 20:36:01.895: INFO: Created: latency-svc-gl9ft +Apr 5 20:36:01.926: INFO: Got endpoints: latency-svc-vnhmk [750.248325ms] +Apr 5 20:36:01.944: INFO: Created: latency-svc-lhb4q +Apr 5 20:36:01.976: INFO: Got endpoints: latency-svc-rxjrh [751.293022ms] +Apr 5 20:36:01.995: INFO: Created: latency-svc-4x6b6 +Apr 5 20:36:02.025: INFO: Got endpoints: latency-svc-8pqrb [750.942656ms] +Apr 5 20:36:02.042: INFO: Created: latency-svc-dg6f9 +Apr 5 20:36:02.076: INFO: Got endpoints: latency-svc-bq69d [750.325983ms] +Apr 5 20:36:02.092: INFO: Created: latency-svc-4v6k9 +Apr 5 20:36:02.128: INFO: Got endpoints: latency-svc-zzqgq [750.949882ms] +Apr 5 20:36:02.146: INFO: Created: latency-svc-djgjk +Apr 5 20:36:02.174: INFO: Got endpoints: latency-svc-jk5hm [747.234733ms] +Apr 5 20:36:02.192: INFO: Created: latency-svc-xkb47 +Apr 5 20:36:02.226: INFO: Got endpoints: latency-svc-nrx48 [749.737189ms] +Apr 5 20:36:02.242: INFO: Created: latency-svc-lb6th +Apr 5 20:36:02.277: INFO: Got endpoints: latency-svc-trqf5 [750.81552ms] +Apr 5 20:36:02.293: INFO: Created: latency-svc-5ttt8 +Apr 5 20:36:02.328: INFO: Got endpoints: latency-svc-pz94t [753.104938ms] +Apr 5 20:36:02.347: INFO: Created: latency-svc-kg9hr +Apr 5 20:36:02.375: INFO: Got endpoints: latency-svc-tlntf [748.744096ms] +Apr 5 20:36:02.391: INFO: Created: latency-svc-5lf4p +Apr 5 20:36:02.425: INFO: Got endpoints: latency-svc-bqztc [750.459546ms] +Apr 5 20:36:02.444: INFO: Created: latency-svc-ls7zk +Apr 5 20:36:02.476: INFO: Got endpoints: latency-svc-jwmn2 [751.118758ms] +Apr 5 20:36:02.494: INFO: Created: latency-svc-5fhvj +Apr 5 20:36:02.527: INFO: Got endpoints: latency-svc-9hxr2 [749.806112ms] +Apr 5 20:36:02.543: INFO: Created: latency-svc-gpsjr +Apr 5 20:36:02.578: INFO: Got endpoints: latency-svc-97flg [752.163018ms] +Apr 5 20:36:02.596: INFO: Created: latency-svc-wg55w +Apr 5 20:36:02.624: INFO: Got endpoints: latency-svc-gl9ft [749.864205ms] +Apr 5 20:36:02.642: INFO: Created: latency-svc-7jhjt +Apr 5 20:36:02.676: INFO: Got endpoints: latency-svc-lhb4q [749.622013ms] +Apr 5 20:36:02.692: INFO: Created: latency-svc-pzn5m +Apr 5 20:36:02.726: INFO: Got endpoints: latency-svc-4x6b6 [750.236765ms] +Apr 5 20:36:02.743: INFO: Created: latency-svc-nfsjk +Apr 5 20:36:02.775: INFO: Got endpoints: latency-svc-dg6f9 [749.996438ms] +Apr 5 20:36:02.791: INFO: Created: latency-svc-4kj9f +Apr 5 20:36:02.826: INFO: Got endpoints: latency-svc-4v6k9 [749.677782ms] +Apr 5 20:36:02.842: INFO: Created: latency-svc-2dtxf +Apr 5 20:36:02.884: INFO: Got endpoints: latency-svc-djgjk [756.326575ms] +Apr 5 20:36:02.900: INFO: Created: latency-svc-kh47f +Apr 5 20:36:02.924: INFO: Got endpoints: latency-svc-xkb47 [750.283348ms] +Apr 5 20:36:02.942: INFO: Created: latency-svc-rf8fn +Apr 5 20:36:02.976: INFO: Got endpoints: latency-svc-lb6th [749.720533ms] +Apr 5 20:36:02.992: INFO: Created: latency-svc-xwr4m +Apr 5 20:36:03.025: INFO: Got endpoints: latency-svc-5ttt8 [748.313789ms] +Apr 5 20:36:03.046: INFO: Created: latency-svc-xxmzk +Apr 5 20:36:03.075: INFO: Got endpoints: latency-svc-kg9hr [746.764238ms] +Apr 5 20:36:03.091: INFO: Created: latency-svc-xrwsz +Apr 5 20:36:03.125: INFO: Got endpoints: latency-svc-5lf4p [750.075049ms] +Apr 5 20:36:03.144: INFO: Created: latency-svc-s86t2 +Apr 5 20:36:03.177: INFO: Got endpoints: latency-svc-ls7zk [752.340247ms] +Apr 5 20:36:03.200: INFO: Created: latency-svc-q5rn6 +Apr 5 20:36:03.225: INFO: Got endpoints: latency-svc-5fhvj [748.408515ms] +Apr 5 20:36:03.243: INFO: Created: latency-svc-ztnxd +Apr 5 20:36:03.275: INFO: Got endpoints: latency-svc-gpsjr [748.248538ms] +Apr 5 20:36:03.292: INFO: Created: latency-svc-nrs2l +Apr 5 20:36:03.326: INFO: Got endpoints: latency-svc-wg55w [747.945633ms] +Apr 5 20:36:03.344: INFO: Created: latency-svc-twd5m +Apr 5 20:36:03.374: INFO: Got endpoints: latency-svc-7jhjt [750.360035ms] +Apr 5 20:36:03.394: INFO: Created: latency-svc-fcbn9 +Apr 5 20:36:03.429: INFO: Got endpoints: latency-svc-pzn5m [753.109477ms] +Apr 5 20:36:03.445: INFO: Created: latency-svc-7m7w5 +Apr 5 20:36:03.477: INFO: Got endpoints: latency-svc-nfsjk [750.502199ms] +Apr 5 20:36:03.496: INFO: Created: latency-svc-kbzhb +Apr 5 20:36:03.526: INFO: Got endpoints: latency-svc-4kj9f [750.453927ms] +Apr 5 20:36:03.547: INFO: Created: latency-svc-z4cxs +Apr 5 20:36:03.575: INFO: Got endpoints: latency-svc-2dtxf [748.041569ms] +Apr 5 20:36:03.591: INFO: Created: latency-svc-4752c +Apr 5 20:36:03.625: INFO: Got endpoints: latency-svc-kh47f [740.463693ms] +Apr 5 20:36:03.639: INFO: Created: latency-svc-bckc2 +Apr 5 20:36:03.674: INFO: Got endpoints: latency-svc-rf8fn [749.721914ms] +Apr 5 20:36:03.692: INFO: Created: latency-svc-hxg9n +Apr 5 20:36:03.725: INFO: Got endpoints: latency-svc-xwr4m [749.583132ms] +Apr 5 20:36:03.741: INFO: Created: latency-svc-m5p8r +Apr 5 20:36:03.776: INFO: Got endpoints: latency-svc-xxmzk [750.821854ms] +Apr 5 20:36:03.793: INFO: Created: latency-svc-blgbw +Apr 5 20:36:03.823: INFO: Got endpoints: latency-svc-xrwsz [748.392826ms] +Apr 5 20:36:03.841: INFO: Created: latency-svc-dcs4z +Apr 5 20:36:03.882: INFO: Got endpoints: latency-svc-s86t2 [756.088213ms] +Apr 5 20:36:03.898: INFO: Created: latency-svc-xt5n8 +Apr 5 20:36:03.926: INFO: Got endpoints: latency-svc-q5rn6 [748.528904ms] +Apr 5 20:36:03.941: INFO: Created: latency-svc-r6r4h +Apr 5 20:36:03.975: INFO: Got endpoints: latency-svc-ztnxd [749.826048ms] +Apr 5 20:36:03.990: INFO: Created: latency-svc-j5ljw +Apr 5 20:36:04.025: INFO: Got endpoints: latency-svc-nrs2l [750.177249ms] +Apr 5 20:36:04.042: INFO: Created: latency-svc-6wq82 +Apr 5 20:36:04.074: INFO: Got endpoints: latency-svc-twd5m [748.267152ms] +Apr 5 20:36:04.098: INFO: Created: latency-svc-b4t5c +Apr 5 20:36:04.125: INFO: Got endpoints: latency-svc-fcbn9 [750.178278ms] +Apr 5 20:36:04.141: INFO: Created: latency-svc-db697 +Apr 5 20:36:04.176: INFO: Got endpoints: latency-svc-7m7w5 [746.833731ms] +Apr 5 20:36:04.192: INFO: Created: latency-svc-5zjc4 +Apr 5 20:36:04.224: INFO: Got endpoints: latency-svc-kbzhb [746.887067ms] +Apr 5 20:36:04.241: INFO: Created: latency-svc-gk9z2 +Apr 5 20:36:04.274: INFO: Got endpoints: latency-svc-z4cxs [747.725756ms] +Apr 5 20:36:04.294: INFO: Created: latency-svc-bccrc +Apr 5 20:36:04.330: INFO: Got endpoints: latency-svc-4752c [754.740802ms] +Apr 5 20:36:04.347: INFO: Created: latency-svc-wz2bp +Apr 5 20:36:04.375: INFO: Got endpoints: latency-svc-bckc2 [750.838792ms] +Apr 5 20:36:04.392: INFO: Created: latency-svc-5wvp4 +Apr 5 20:36:04.424: INFO: Got endpoints: latency-svc-hxg9n [749.739501ms] +Apr 5 20:36:04.444: INFO: Created: latency-svc-bspq4 +Apr 5 20:36:04.474: INFO: Got endpoints: latency-svc-m5p8r [748.557785ms] +Apr 5 20:36:04.492: INFO: Created: latency-svc-pfxzs +Apr 5 20:36:04.527: INFO: Got endpoints: latency-svc-blgbw [750.216939ms] +Apr 5 20:36:04.549: INFO: Created: latency-svc-qzmkk +Apr 5 20:36:04.574: INFO: Got endpoints: latency-svc-dcs4z [750.808567ms] +Apr 5 20:36:04.592: INFO: Created: latency-svc-gt86h +Apr 5 20:36:04.626: INFO: Got endpoints: latency-svc-xt5n8 [744.055278ms] +Apr 5 20:36:04.645: INFO: Created: latency-svc-sr4jx +Apr 5 20:36:04.675: INFO: Got endpoints: latency-svc-r6r4h [749.466798ms] +Apr 5 20:36:04.692: INFO: Created: latency-svc-qzbfh +Apr 5 20:36:04.725: INFO: Got endpoints: latency-svc-j5ljw [749.768912ms] +Apr 5 20:36:04.742: INFO: Created: latency-svc-ft2k9 +Apr 5 20:36:04.775: INFO: Got endpoints: latency-svc-6wq82 [749.568565ms] +Apr 5 20:36:04.794: INFO: Created: latency-svc-js8b5 +Apr 5 20:36:04.826: INFO: Got endpoints: latency-svc-b4t5c [751.498576ms] +Apr 5 20:36:04.844: INFO: Created: latency-svc-pbv5l +Apr 5 20:36:04.874: INFO: Got endpoints: latency-svc-db697 [749.1858ms] +Apr 5 20:36:04.891: INFO: Created: latency-svc-q5rxz +Apr 5 20:36:04.926: INFO: Got endpoints: latency-svc-5zjc4 [749.32814ms] +Apr 5 20:36:04.943: INFO: Created: latency-svc-r8h5h +Apr 5 20:36:04.974: INFO: Got endpoints: latency-svc-gk9z2 [749.538119ms] +Apr 5 20:36:04.992: INFO: Created: latency-svc-qwnms +Apr 5 20:36:05.026: INFO: Got endpoints: latency-svc-bccrc [751.988031ms] +Apr 5 20:36:05.042: INFO: Created: latency-svc-kxb6n +Apr 5 20:36:05.076: INFO: Got endpoints: latency-svc-wz2bp [746.10658ms] +Apr 5 20:36:05.093: INFO: Created: latency-svc-j6jrd +Apr 5 20:36:05.125: INFO: Got endpoints: latency-svc-5wvp4 [748.797817ms] +Apr 5 20:36:05.141: INFO: Created: latency-svc-5bnzj +Apr 5 20:36:05.174: INFO: Got endpoints: latency-svc-bspq4 [749.839389ms] +Apr 5 20:36:05.192: INFO: Created: latency-svc-shrwq +Apr 5 20:36:05.225: INFO: Got endpoints: latency-svc-pfxzs [749.85596ms] +Apr 5 20:36:05.244: INFO: Created: latency-svc-ggg4m +Apr 5 20:36:05.278: INFO: Got endpoints: latency-svc-qzmkk [750.890033ms] +Apr 5 20:36:05.293: INFO: Created: latency-svc-xdplv +Apr 5 20:36:05.327: INFO: Got endpoints: latency-svc-gt86h [752.580616ms] +Apr 5 20:36:05.346: INFO: Created: latency-svc-bvc2j +Apr 5 20:36:05.376: INFO: Got endpoints: latency-svc-sr4jx [749.622952ms] +Apr 5 20:36:05.394: INFO: Created: latency-svc-2cc62 +Apr 5 20:36:05.425: INFO: Got endpoints: latency-svc-qzbfh [749.841496ms] +Apr 5 20:36:05.444: INFO: Created: latency-svc-gnmzz +Apr 5 20:36:05.476: INFO: Got endpoints: latency-svc-ft2k9 [751.17115ms] +Apr 5 20:36:05.495: INFO: Created: latency-svc-mrf66 +Apr 5 20:36:05.528: INFO: Got endpoints: latency-svc-js8b5 [752.600549ms] +Apr 5 20:36:05.546: INFO: Created: latency-svc-79529 +Apr 5 20:36:05.579: INFO: Got endpoints: latency-svc-pbv5l [752.68214ms] +Apr 5 20:36:05.601: INFO: Created: latency-svc-zg4s8 +Apr 5 20:36:05.626: INFO: Got endpoints: latency-svc-q5rxz [751.978931ms] +Apr 5 20:36:05.642: INFO: Created: latency-svc-gvfns +Apr 5 20:36:05.683: INFO: Got endpoints: latency-svc-r8h5h [757.501653ms] +Apr 5 20:36:05.716: INFO: Created: latency-svc-4mt7m +Apr 5 20:36:05.725: INFO: Got endpoints: latency-svc-qwnms [751.360878ms] +Apr 5 20:36:05.744: INFO: Created: latency-svc-xc47n +Apr 5 20:36:05.779: INFO: Got endpoints: latency-svc-kxb6n [752.485698ms] +Apr 5 20:36:05.806: INFO: Created: latency-svc-blctw +Apr 5 20:36:05.828: INFO: Got endpoints: latency-svc-j6jrd [751.743142ms] +Apr 5 20:36:05.843: INFO: Created: latency-svc-49nf8 +Apr 5 20:36:05.875: INFO: Got endpoints: latency-svc-5bnzj [749.760116ms] +Apr 5 20:36:05.894: INFO: Created: latency-svc-s7fpj +Apr 5 20:36:05.927: INFO: Got endpoints: latency-svc-shrwq [752.733945ms] +Apr 5 20:36:05.943: INFO: Created: latency-svc-csjxt +Apr 5 20:36:05.974: INFO: Got endpoints: latency-svc-ggg4m [749.111326ms] +Apr 5 20:36:05.996: INFO: Created: latency-svc-nd48n +Apr 5 20:36:06.023: INFO: Got endpoints: latency-svc-xdplv [745.210079ms] +Apr 5 20:36:06.041: INFO: Created: latency-svc-756c6 +Apr 5 20:36:06.074: INFO: Got endpoints: latency-svc-bvc2j [747.095849ms] +Apr 5 20:36:06.091: INFO: Created: latency-svc-xscc9 +Apr 5 20:36:06.126: INFO: Got endpoints: latency-svc-2cc62 [750.384898ms] +Apr 5 20:36:06.142: INFO: Created: latency-svc-dvx49 +Apr 5 20:36:06.174: INFO: Got endpoints: latency-svc-gnmzz [749.02678ms] +Apr 5 20:36:06.191: INFO: Created: latency-svc-9lw4c +Apr 5 20:36:06.225: INFO: Got endpoints: latency-svc-mrf66 [748.320346ms] +Apr 5 20:36:06.243: INFO: Created: latency-svc-5b5tb +Apr 5 20:36:06.275: INFO: Got endpoints: latency-svc-79529 [746.351921ms] +Apr 5 20:36:06.329: INFO: Got endpoints: latency-svc-zg4s8 [749.980318ms] +Apr 5 20:36:06.376: INFO: Got endpoints: latency-svc-gvfns [749.926672ms] +Apr 5 20:36:06.427: INFO: Got endpoints: latency-svc-4mt7m [743.67989ms] +Apr 5 20:36:06.474: INFO: Got endpoints: latency-svc-xc47n [748.700231ms] +Apr 5 20:36:06.526: INFO: Got endpoints: latency-svc-blctw [747.658236ms] +Apr 5 20:36:06.574: INFO: Got endpoints: latency-svc-49nf8 [746.623476ms] +Apr 5 20:36:06.624: INFO: Got endpoints: latency-svc-s7fpj [748.928419ms] +Apr 5 20:36:06.676: INFO: Got endpoints: latency-svc-csjxt [749.17074ms] +Apr 5 20:36:06.726: INFO: Got endpoints: latency-svc-nd48n [752.308833ms] +Apr 5 20:36:06.775: INFO: Got endpoints: latency-svc-756c6 [751.23747ms] +Apr 5 20:36:06.825: INFO: Got endpoints: latency-svc-xscc9 [750.985351ms] +Apr 5 20:36:06.884: INFO: Got endpoints: latency-svc-dvx49 [757.942774ms] +Apr 5 20:36:06.924: INFO: Got endpoints: latency-svc-9lw4c [749.758259ms] +Apr 5 20:36:06.976: INFO: Got endpoints: latency-svc-5b5tb [751.172792ms] +Apr 5 20:36:06.977: INFO: Latencies: [31.507667ms 46.151923ms 55.468397ms 74.067848ms 93.320001ms 108.658995ms 134.666064ms 137.834001ms 156.604161ms 175.625156ms 192.206107ms 204.069014ms 223.206458ms 225.135212ms 228.225998ms 229.84011ms 234.728582ms 235.186951ms 236.417335ms 237.253881ms 238.438218ms 240.505123ms 240.868607ms 242.793377ms 244.482994ms 245.720723ms 246.460046ms 246.898423ms 248.38867ms 248.668606ms 249.752365ms 250.548134ms 251.102534ms 251.378764ms 254.127977ms 254.373368ms 254.525575ms 255.246826ms 256.932392ms 257.756907ms 259.319656ms 260.085072ms 260.507243ms 276.302643ms 296.193351ms 330.345435ms 359.407777ms 398.222132ms 431.637077ms 454.417844ms 498.438243ms 524.7809ms 561.177537ms 597.530288ms 617.454794ms 655.670136ms 694.357207ms 729.978711ms 740.463693ms 742.510555ms 743.67989ms 743.871666ms 744.055278ms 745.210079ms 746.10658ms 746.351921ms 746.623476ms 746.64138ms 746.708076ms 746.764238ms 746.833731ms 746.887067ms 747.095849ms 747.234733ms 747.256086ms 747.455939ms 747.514561ms 747.658236ms 747.676699ms 747.725756ms 747.929227ms 747.945633ms 748.001371ms 748.041569ms 748.107149ms 748.248538ms 748.267152ms 748.271327ms 748.313789ms 748.320346ms 748.392826ms 748.408515ms 748.528904ms 748.546329ms 748.557785ms 748.700231ms 748.744096ms 748.768169ms 748.797817ms 748.89719ms 748.921582ms 748.928419ms 748.999689ms 749.02678ms 749.074056ms 749.111326ms 749.17074ms 749.176988ms 749.1858ms 749.32814ms 749.365568ms 749.379182ms 749.399181ms 749.466798ms 749.538119ms 749.568565ms 749.583132ms 749.622013ms 749.622952ms 749.677782ms 749.684112ms 749.720533ms 749.721914ms 749.737189ms 749.739501ms 749.758259ms 749.760116ms 749.768912ms 749.806112ms 749.826048ms 749.839389ms 749.841496ms 749.85596ms 749.864205ms 749.926672ms 749.980318ms 749.996438ms 750.075049ms 750.177249ms 750.178278ms 750.216939ms 750.236765ms 750.248325ms 750.283348ms 750.325983ms 750.360035ms 750.384898ms 750.389281ms 750.401687ms 750.453927ms 750.459546ms 750.502199ms 750.604708ms 750.636622ms 750.671214ms 750.802333ms 750.808567ms 750.81552ms 750.821854ms 750.838792ms 750.878376ms 750.890033ms 750.942656ms 750.949882ms 750.985351ms 751.005055ms 751.118758ms 751.165621ms 751.17115ms 751.172792ms 751.23747ms 751.293022ms 751.358906ms 751.360878ms 751.498576ms 751.509329ms 751.560737ms 751.743142ms 751.978931ms 751.988031ms 752.096356ms 752.163018ms 752.308833ms 752.340247ms 752.347751ms 752.481377ms 752.485698ms 752.580616ms 752.600549ms 752.68214ms 752.733945ms 752.836969ms 753.104938ms 753.109477ms 754.740802ms 755.347254ms 756.088213ms 756.326575ms 757.501653ms 757.942774ms] +Apr 5 20:36:06.977: INFO: 50 %ile: 748.921582ms +Apr 5 20:36:06.977: INFO: 90 %ile: 752.096356ms +Apr 5 20:36:06.977: INFO: 99 %ile: 757.501653ms +Apr 5 20:36:06.977: INFO: Total sample count: 200 +[AfterEach] [sig-network] Service endpoints latency + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:06.978: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-network] Service endpoints latency + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-network] Service endpoints latency + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-network] Service endpoints latency + tear down framework | framework.go:193 +STEP: Destroying namespace "svc-latency-3797" for this suite. 04/05/23 20:36:06.987 +------------------------------ +• [SLOW TEST] [14.782 seconds] +[sig-network] Service endpoints latency +test/e2e/network/common/framework.go:23 + should not be very high [Conformance] + test/e2e/network/service_latency.go:59 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-network] Service endpoints latency + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:35:52.212 + Apr 5 20:35:52.212: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename svc-latency 04/05/23 20:35:52.213 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:35:52.229 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:35:52.232 + [BeforeEach] [sig-network] Service endpoints latency + test/e2e/framework/metrics/init/init.go:31 + [It] should not be very high [Conformance] + test/e2e/network/service_latency.go:59 + Apr 5 20:35:52.235: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: creating replication controller svc-latency-rc in namespace svc-latency-3797 04/05/23 20:35:52.237 + I0405 20:35:52.243750 19 runners.go:193] Created replication controller with name: svc-latency-rc, namespace: svc-latency-3797, replica count: 1 + I0405 20:35:53.295811 19 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 + I0405 20:35:54.296419 19 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 + I0405 20:35:55.296811 19 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 + I0405 20:35:56.297365 19 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 + I0405 20:35:57.297698 19 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 + I0405 20:35:58.297947 19 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 + Apr 5 20:35:58.419: INFO: Created: latency-svc-j9df2 + Apr 5 20:35:58.427: INFO: Got endpoints: latency-svc-j9df2 [28.473239ms] + Apr 5 20:35:58.455: INFO: Created: latency-svc-lpm64 + Apr 5 20:35:58.459: INFO: Got endpoints: latency-svc-lpm64 [31.507667ms] + Apr 5 20:35:58.468: INFO: Created: latency-svc-qzrz6 + Apr 5 20:35:58.474: INFO: Got endpoints: latency-svc-qzrz6 [46.151923ms] + Apr 5 20:35:58.480: INFO: Created: latency-svc-9n5xp + Apr 5 20:35:58.484: INFO: Got endpoints: latency-svc-9n5xp [55.468397ms] + Apr 5 20:35:58.496: INFO: Created: latency-svc-8skc8 + Apr 5 20:35:58.503: INFO: Got endpoints: latency-svc-8skc8 [74.067848ms] + Apr 5 20:35:58.517: INFO: Created: latency-svc-ddbks + Apr 5 20:35:58.522: INFO: Got endpoints: latency-svc-ddbks [93.320001ms] + Apr 5 20:35:58.529: INFO: Created: latency-svc-2qzrk + Apr 5 20:35:58.538: INFO: Got endpoints: latency-svc-2qzrk [108.658995ms] + Apr 5 20:35:58.554: INFO: Created: latency-svc-42cvh + Apr 5 20:35:58.563: INFO: Created: latency-svc-4q7w5 + Apr 5 20:35:58.564: INFO: Got endpoints: latency-svc-42cvh [134.666064ms] + Apr 5 20:35:58.567: INFO: Got endpoints: latency-svc-4q7w5 [137.834001ms] + Apr 5 20:35:58.579: INFO: Created: latency-svc-4ddwl + Apr 5 20:35:58.585: INFO: Got endpoints: latency-svc-4ddwl [156.604161ms] + Apr 5 20:35:58.598: INFO: Created: latency-svc-lbbsr + Apr 5 20:35:58.605: INFO: Got endpoints: latency-svc-lbbsr [175.625156ms] + Apr 5 20:35:58.612: INFO: Created: latency-svc-sd6cr + Apr 5 20:35:58.623: INFO: Got endpoints: latency-svc-sd6cr [192.206107ms] + Apr 5 20:35:58.626: INFO: Created: latency-svc-cdtqg + Apr 5 20:35:58.635: INFO: Got endpoints: latency-svc-cdtqg [204.069014ms] + Apr 5 20:35:58.666: INFO: Created: latency-svc-lzpjx + Apr 5 20:35:58.671: INFO: Got endpoints: latency-svc-lzpjx [240.868607ms] + Apr 5 20:35:58.687: INFO: Created: latency-svc-dxbhn + Apr 5 20:35:58.690: INFO: Got endpoints: latency-svc-dxbhn [260.085072ms] + Apr 5 20:35:58.700: INFO: Created: latency-svc-hk5cx + Apr 5 20:35:58.706: INFO: Got endpoints: latency-svc-hk5cx [276.302643ms] + Apr 5 20:35:58.713: INFO: Created: latency-svc-ppc2x + Apr 5 20:35:58.719: INFO: Got endpoints: latency-svc-ppc2x [259.319656ms] + Apr 5 20:35:58.725: INFO: Created: latency-svc-d5n9x + Apr 5 20:35:58.729: INFO: Got endpoints: latency-svc-d5n9x [254.127977ms] + Apr 5 20:35:58.739: INFO: Created: latency-svc-8wchc + Apr 5 20:35:58.741: INFO: Got endpoints: latency-svc-8wchc [256.932392ms] + Apr 5 20:35:58.754: INFO: Created: latency-svc-tccbx + Apr 5 20:35:58.761: INFO: Got endpoints: latency-svc-tccbx [257.756907ms] + Apr 5 20:35:58.769: INFO: Created: latency-svc-48tqs + Apr 5 20:35:58.773: INFO: Got endpoints: latency-svc-48tqs [250.548134ms] + Apr 5 20:35:58.784: INFO: Created: latency-svc-wvk5w + Apr 5 20:35:58.793: INFO: Got endpoints: latency-svc-wvk5w [254.525575ms] + Apr 5 20:35:58.801: INFO: Created: latency-svc-p2jfp + Apr 5 20:35:58.810: INFO: Got endpoints: latency-svc-p2jfp [245.720723ms] + Apr 5 20:35:58.813: INFO: Created: latency-svc-ddpk4 + Apr 5 20:35:58.819: INFO: Got endpoints: latency-svc-ddpk4 [251.378764ms] + Apr 5 20:35:58.828: INFO: Created: latency-svc-8z4s9 + Apr 5 20:35:58.834: INFO: Got endpoints: latency-svc-8z4s9 [248.668606ms] + Apr 5 20:35:58.844: INFO: Created: latency-svc-thbrx + Apr 5 20:35:58.854: INFO: Got endpoints: latency-svc-thbrx [248.38867ms] + Apr 5 20:35:58.858: INFO: Created: latency-svc-h6w29 + Apr 5 20:35:58.863: INFO: Got endpoints: latency-svc-h6w29 [240.505123ms] + Apr 5 20:35:58.873: INFO: Created: latency-svc-tlhsg + Apr 5 20:35:58.882: INFO: Got endpoints: latency-svc-tlhsg [246.898423ms] + Apr 5 20:35:58.894: INFO: Created: latency-svc-6ljjf + Apr 5 20:35:58.901: INFO: Got endpoints: latency-svc-6ljjf [229.84011ms] + Apr 5 20:35:58.907: INFO: Created: latency-svc-25knn + Apr 5 20:35:58.914: INFO: Got endpoints: latency-svc-25knn [223.206458ms] + Apr 5 20:35:58.924: INFO: Created: latency-svc-mhcjc + Apr 5 20:35:58.932: INFO: Got endpoints: latency-svc-mhcjc [225.135212ms] + Apr 5 20:35:58.941: INFO: Created: latency-svc-llh47 + Apr 5 20:35:58.947: INFO: Got endpoints: latency-svc-llh47 [228.225998ms] + Apr 5 20:35:58.959: INFO: Created: latency-svc-55lqz + Apr 5 20:35:58.966: INFO: Got endpoints: latency-svc-55lqz [236.417335ms] + Apr 5 20:35:58.970: INFO: Created: latency-svc-6tvrx + Apr 5 20:35:58.976: INFO: Got endpoints: latency-svc-6tvrx [235.186951ms] + Apr 5 20:35:58.988: INFO: Created: latency-svc-b5jjf + Apr 5 20:35:58.996: INFO: Got endpoints: latency-svc-b5jjf [234.728582ms] + Apr 5 20:35:59.008: INFO: Created: latency-svc-dnqlc + Apr 5 20:35:59.019: INFO: Got endpoints: latency-svc-dnqlc [246.460046ms] + Apr 5 20:35:59.023: INFO: Created: latency-svc-fd4b8 + Apr 5 20:35:59.030: INFO: Got endpoints: latency-svc-fd4b8 [237.253881ms] + Apr 5 20:35:59.040: INFO: Created: latency-svc-krrst + Apr 5 20:35:59.049: INFO: Got endpoints: latency-svc-krrst [238.438218ms] + Apr 5 20:35:59.053: INFO: Created: latency-svc-ptn6t + Apr 5 20:35:59.063: INFO: Got endpoints: latency-svc-ptn6t [244.482994ms] + Apr 5 20:35:59.071: INFO: Created: latency-svc-gwml7 + Apr 5 20:35:59.077: INFO: Got endpoints: latency-svc-gwml7 [242.793377ms] + Apr 5 20:35:59.104: INFO: Created: latency-svc-99nr8 + Apr 5 20:35:59.108: INFO: Got endpoints: latency-svc-99nr8 [254.373368ms] + Apr 5 20:35:59.111: INFO: Created: latency-svc-8vnbt + Apr 5 20:35:59.119: INFO: Got endpoints: latency-svc-8vnbt [255.246826ms] + Apr 5 20:35:59.127: INFO: Created: latency-svc-xmmnm + Apr 5 20:35:59.131: INFO: Got endpoints: latency-svc-xmmnm [249.752365ms] + Apr 5 20:35:59.144: INFO: Created: latency-svc-qd9hp + Apr 5 20:35:59.152: INFO: Got endpoints: latency-svc-qd9hp [251.102534ms] + Apr 5 20:35:59.158: INFO: Created: latency-svc-c4sgm + Apr 5 20:35:59.168: INFO: Created: latency-svc-zpzgg + Apr 5 20:35:59.174: INFO: Got endpoints: latency-svc-c4sgm [260.507243ms] + Apr 5 20:35:59.186: INFO: Created: latency-svc-hv5xf + Apr 5 20:35:59.205: INFO: Created: latency-svc-x8479 + Apr 5 20:35:59.227: INFO: Created: latency-svc-5mndt + Apr 5 20:35:59.228: INFO: Got endpoints: latency-svc-zpzgg [296.193351ms] + Apr 5 20:35:59.244: INFO: Created: latency-svc-7cl6f + Apr 5 20:35:59.255: INFO: Created: latency-svc-bcc84 + Apr 5 20:35:59.276: INFO: Created: latency-svc-c7v8z + Apr 5 20:35:59.278: INFO: Got endpoints: latency-svc-hv5xf [330.345435ms] + Apr 5 20:35:59.290: INFO: Created: latency-svc-btxbz + Apr 5 20:35:59.304: INFO: Created: latency-svc-sbjfj + Apr 5 20:35:59.318: INFO: Created: latency-svc-kw7k5 + Apr 5 20:35:59.325: INFO: Got endpoints: latency-svc-x8479 [359.407777ms] + Apr 5 20:35:59.335: INFO: Created: latency-svc-phl78 + Apr 5 20:35:59.347: INFO: Created: latency-svc-lvmb8 + Apr 5 20:35:59.363: INFO: Created: latency-svc-vgrdf + Apr 5 20:35:59.374: INFO: Got endpoints: latency-svc-5mndt [398.222132ms] + Apr 5 20:35:59.381: INFO: Created: latency-svc-f2bnq + Apr 5 20:35:59.391: INFO: Created: latency-svc-wzl6g + Apr 5 20:35:59.405: INFO: Created: latency-svc-j2h4t + Apr 5 20:35:59.419: INFO: Created: latency-svc-vtd6g + Apr 5 20:35:59.428: INFO: Got endpoints: latency-svc-7cl6f [431.637077ms] + Apr 5 20:35:59.432: INFO: Created: latency-svc-jlx45 + Apr 5 20:35:59.452: INFO: Created: latency-svc-w5nmm + Apr 5 20:35:59.465: INFO: Created: latency-svc-z57cd + Apr 5 20:35:59.474: INFO: Got endpoints: latency-svc-bcc84 [454.417844ms] + Apr 5 20:35:59.508: INFO: Created: latency-svc-6t2fk + Apr 5 20:35:59.529: INFO: Got endpoints: latency-svc-c7v8z [498.438243ms] + Apr 5 20:35:59.549: INFO: Created: latency-svc-z2xj9 + Apr 5 20:35:59.574: INFO: Got endpoints: latency-svc-btxbz [524.7809ms] + Apr 5 20:35:59.595: INFO: Created: latency-svc-dw4bz + Apr 5 20:35:59.625: INFO: Got endpoints: latency-svc-sbjfj [561.177537ms] + Apr 5 20:35:59.645: INFO: Created: latency-svc-t56zp + Apr 5 20:35:59.675: INFO: Got endpoints: latency-svc-kw7k5 [597.530288ms] + Apr 5 20:35:59.694: INFO: Created: latency-svc-whk9h + Apr 5 20:35:59.726: INFO: Got endpoints: latency-svc-phl78 [617.454794ms] + Apr 5 20:35:59.747: INFO: Created: latency-svc-p6fv8 + Apr 5 20:35:59.775: INFO: Got endpoints: latency-svc-lvmb8 [655.670136ms] + Apr 5 20:35:59.793: INFO: Created: latency-svc-6m8lh + Apr 5 20:35:59.826: INFO: Got endpoints: latency-svc-vgrdf [694.357207ms] + Apr 5 20:35:59.847: INFO: Created: latency-svc-cq5dw + Apr 5 20:35:59.882: INFO: Got endpoints: latency-svc-f2bnq [729.978711ms] + Apr 5 20:35:59.903: INFO: Created: latency-svc-29shp + Apr 5 20:35:59.926: INFO: Got endpoints: latency-svc-wzl6g [751.509329ms] + Apr 5 20:35:59.944: INFO: Created: latency-svc-922jp + Apr 5 20:35:59.976: INFO: Got endpoints: latency-svc-j2h4t [747.455939ms] + Apr 5 20:35:59.994: INFO: Created: latency-svc-j6t6c + Apr 5 20:36:00.026: INFO: Got endpoints: latency-svc-vtd6g [748.107149ms] + Apr 5 20:36:00.045: INFO: Created: latency-svc-585ds + Apr 5 20:36:00.074: INFO: Got endpoints: latency-svc-jlx45 [749.399181ms] + Apr 5 20:36:00.098: INFO: Created: latency-svc-vc6ws + Apr 5 20:36:00.127: INFO: Got endpoints: latency-svc-w5nmm [752.481377ms] + Apr 5 20:36:00.147: INFO: Created: latency-svc-fmzqb + Apr 5 20:36:00.176: INFO: Got endpoints: latency-svc-z57cd [747.929227ms] + Apr 5 20:36:00.196: INFO: Created: latency-svc-tl6r5 + Apr 5 20:36:00.223: INFO: Got endpoints: latency-svc-6t2fk [748.89719ms] + Apr 5 20:36:00.246: INFO: Created: latency-svc-qlbjz + Apr 5 20:36:00.277: INFO: Got endpoints: latency-svc-z2xj9 [748.271327ms] + Apr 5 20:36:00.294: INFO: Created: latency-svc-54zbr + Apr 5 20:36:00.325: INFO: Got endpoints: latency-svc-dw4bz [750.636622ms] + Apr 5 20:36:00.346: INFO: Created: latency-svc-5vss5 + Apr 5 20:36:00.375: INFO: Got endpoints: latency-svc-t56zp [750.401687ms] + Apr 5 20:36:00.395: INFO: Created: latency-svc-qb6dj + Apr 5 20:36:00.425: INFO: Got endpoints: latency-svc-whk9h [749.684112ms] + Apr 5 20:36:00.449: INFO: Created: latency-svc-px7pw + Apr 5 20:36:00.477: INFO: Got endpoints: latency-svc-p6fv8 [751.005055ms] + Apr 5 20:36:00.502: INFO: Created: latency-svc-7jbb7 + Apr 5 20:36:00.524: INFO: Got endpoints: latency-svc-6m8lh [749.379182ms] + Apr 5 20:36:00.543: INFO: Created: latency-svc-hp7sp + Apr 5 20:36:00.577: INFO: Got endpoints: latency-svc-cq5dw [751.358906ms] + Apr 5 20:36:00.596: INFO: Created: latency-svc-nps85 + Apr 5 20:36:00.626: INFO: Got endpoints: latency-svc-29shp [743.871666ms] + Apr 5 20:36:00.649: INFO: Created: latency-svc-5zwhs + Apr 5 20:36:00.674: INFO: Got endpoints: latency-svc-922jp [747.676699ms] + Apr 5 20:36:00.693: INFO: Created: latency-svc-gmgg5 + Apr 5 20:36:00.726: INFO: Got endpoints: latency-svc-j6t6c [750.389281ms] + Apr 5 20:36:00.744: INFO: Created: latency-svc-splf9 + Apr 5 20:36:00.779: INFO: Got endpoints: latency-svc-585ds [752.347751ms] + Apr 5 20:36:00.798: INFO: Created: latency-svc-vdqjb + Apr 5 20:36:00.825: INFO: Got endpoints: latency-svc-vc6ws [750.802333ms] + Apr 5 20:36:00.844: INFO: Created: latency-svc-b7jrc + Apr 5 20:36:00.876: INFO: Got endpoints: latency-svc-fmzqb [748.546329ms] + Apr 5 20:36:00.901: INFO: Created: latency-svc-vhhc2 + Apr 5 20:36:00.925: INFO: Got endpoints: latency-svc-tl6r5 [748.999689ms] + Apr 5 20:36:00.945: INFO: Created: latency-svc-b4f7d + Apr 5 20:36:00.974: INFO: Got endpoints: latency-svc-qlbjz [750.671214ms] + Apr 5 20:36:00.992: INFO: Created: latency-svc-4dhk4 + Apr 5 20:36:01.025: INFO: Got endpoints: latency-svc-54zbr [747.514561ms] + Apr 5 20:36:01.045: INFO: Created: latency-svc-hswnt + Apr 5 20:36:01.077: INFO: Got endpoints: latency-svc-5vss5 [752.096356ms] + Apr 5 20:36:01.107: INFO: Created: latency-svc-jvgzr + Apr 5 20:36:01.131: INFO: Got endpoints: latency-svc-qb6dj [755.347254ms] + Apr 5 20:36:01.156: INFO: Created: latency-svc-4hlqc + Apr 5 20:36:01.176: INFO: Got endpoints: latency-svc-px7pw [751.165621ms] + Apr 5 20:36:01.219: INFO: Created: latency-svc-vnhmk + Apr 5 20:36:01.224: INFO: Got endpoints: latency-svc-7jbb7 [746.64138ms] + Apr 5 20:36:01.253: INFO: Created: latency-svc-rxjrh + Apr 5 20:36:01.274: INFO: Got endpoints: latency-svc-hp7sp [749.176988ms] + Apr 5 20:36:01.303: INFO: Created: latency-svc-8pqrb + Apr 5 20:36:01.326: INFO: Got endpoints: latency-svc-nps85 [748.768169ms] + Apr 5 20:36:01.342: INFO: Created: latency-svc-bq69d + Apr 5 20:36:01.376: INFO: Got endpoints: latency-svc-5zwhs [746.708076ms] + Apr 5 20:36:01.398: INFO: Created: latency-svc-zzqgq + Apr 5 20:36:01.427: INFO: Got endpoints: latency-svc-gmgg5 [752.836969ms] + Apr 5 20:36:01.443: INFO: Created: latency-svc-jk5hm + Apr 5 20:36:01.476: INFO: Got endpoints: latency-svc-splf9 [749.365568ms] + Apr 5 20:36:01.495: INFO: Created: latency-svc-nrx48 + Apr 5 20:36:01.526: INFO: Got endpoints: latency-svc-vdqjb [747.256086ms] + Apr 5 20:36:01.545: INFO: Created: latency-svc-trqf5 + Apr 5 20:36:01.574: INFO: Got endpoints: latency-svc-b7jrc [748.921582ms] + Apr 5 20:36:01.590: INFO: Created: latency-svc-pz94t + Apr 5 20:36:01.626: INFO: Got endpoints: latency-svc-vhhc2 [750.878376ms] + Apr 5 20:36:01.642: INFO: Created: latency-svc-tlntf + Apr 5 20:36:01.674: INFO: Got endpoints: latency-svc-b4f7d [749.074056ms] + Apr 5 20:36:01.691: INFO: Created: latency-svc-bqztc + Apr 5 20:36:01.725: INFO: Got endpoints: latency-svc-4dhk4 [750.604708ms] + Apr 5 20:36:01.740: INFO: Created: latency-svc-jwmn2 + Apr 5 20:36:01.777: INFO: Got endpoints: latency-svc-hswnt [751.560737ms] + Apr 5 20:36:01.793: INFO: Created: latency-svc-9hxr2 + Apr 5 20:36:01.825: INFO: Got endpoints: latency-svc-jvgzr [748.001371ms] + Apr 5 20:36:01.842: INFO: Created: latency-svc-97flg + Apr 5 20:36:01.874: INFO: Got endpoints: latency-svc-4hlqc [742.510555ms] + Apr 5 20:36:01.895: INFO: Created: latency-svc-gl9ft + Apr 5 20:36:01.926: INFO: Got endpoints: latency-svc-vnhmk [750.248325ms] + Apr 5 20:36:01.944: INFO: Created: latency-svc-lhb4q + Apr 5 20:36:01.976: INFO: Got endpoints: latency-svc-rxjrh [751.293022ms] + Apr 5 20:36:01.995: INFO: Created: latency-svc-4x6b6 + Apr 5 20:36:02.025: INFO: Got endpoints: latency-svc-8pqrb [750.942656ms] + Apr 5 20:36:02.042: INFO: Created: latency-svc-dg6f9 + Apr 5 20:36:02.076: INFO: Got endpoints: latency-svc-bq69d [750.325983ms] + Apr 5 20:36:02.092: INFO: Created: latency-svc-4v6k9 + Apr 5 20:36:02.128: INFO: Got endpoints: latency-svc-zzqgq [750.949882ms] + Apr 5 20:36:02.146: INFO: Created: latency-svc-djgjk + Apr 5 20:36:02.174: INFO: Got endpoints: latency-svc-jk5hm [747.234733ms] + Apr 5 20:36:02.192: INFO: Created: latency-svc-xkb47 + Apr 5 20:36:02.226: INFO: Got endpoints: latency-svc-nrx48 [749.737189ms] + Apr 5 20:36:02.242: INFO: Created: latency-svc-lb6th + Apr 5 20:36:02.277: INFO: Got endpoints: latency-svc-trqf5 [750.81552ms] + Apr 5 20:36:02.293: INFO: Created: latency-svc-5ttt8 + Apr 5 20:36:02.328: INFO: Got endpoints: latency-svc-pz94t [753.104938ms] + Apr 5 20:36:02.347: INFO: Created: latency-svc-kg9hr + Apr 5 20:36:02.375: INFO: Got endpoints: latency-svc-tlntf [748.744096ms] + Apr 5 20:36:02.391: INFO: Created: latency-svc-5lf4p + Apr 5 20:36:02.425: INFO: Got endpoints: latency-svc-bqztc [750.459546ms] + Apr 5 20:36:02.444: INFO: Created: latency-svc-ls7zk + Apr 5 20:36:02.476: INFO: Got endpoints: latency-svc-jwmn2 [751.118758ms] + Apr 5 20:36:02.494: INFO: Created: latency-svc-5fhvj + Apr 5 20:36:02.527: INFO: Got endpoints: latency-svc-9hxr2 [749.806112ms] + Apr 5 20:36:02.543: INFO: Created: latency-svc-gpsjr + Apr 5 20:36:02.578: INFO: Got endpoints: latency-svc-97flg [752.163018ms] + Apr 5 20:36:02.596: INFO: Created: latency-svc-wg55w + Apr 5 20:36:02.624: INFO: Got endpoints: latency-svc-gl9ft [749.864205ms] + Apr 5 20:36:02.642: INFO: Created: latency-svc-7jhjt + Apr 5 20:36:02.676: INFO: Got endpoints: latency-svc-lhb4q [749.622013ms] + Apr 5 20:36:02.692: INFO: Created: latency-svc-pzn5m + Apr 5 20:36:02.726: INFO: Got endpoints: latency-svc-4x6b6 [750.236765ms] + Apr 5 20:36:02.743: INFO: Created: latency-svc-nfsjk + Apr 5 20:36:02.775: INFO: Got endpoints: latency-svc-dg6f9 [749.996438ms] + Apr 5 20:36:02.791: INFO: Created: latency-svc-4kj9f + Apr 5 20:36:02.826: INFO: Got endpoints: latency-svc-4v6k9 [749.677782ms] + Apr 5 20:36:02.842: INFO: Created: latency-svc-2dtxf + Apr 5 20:36:02.884: INFO: Got endpoints: latency-svc-djgjk [756.326575ms] + Apr 5 20:36:02.900: INFO: Created: latency-svc-kh47f + Apr 5 20:36:02.924: INFO: Got endpoints: latency-svc-xkb47 [750.283348ms] + Apr 5 20:36:02.942: INFO: Created: latency-svc-rf8fn + Apr 5 20:36:02.976: INFO: Got endpoints: latency-svc-lb6th [749.720533ms] + Apr 5 20:36:02.992: INFO: Created: latency-svc-xwr4m + Apr 5 20:36:03.025: INFO: Got endpoints: latency-svc-5ttt8 [748.313789ms] + Apr 5 20:36:03.046: INFO: Created: latency-svc-xxmzk + Apr 5 20:36:03.075: INFO: Got endpoints: latency-svc-kg9hr [746.764238ms] + Apr 5 20:36:03.091: INFO: Created: latency-svc-xrwsz + Apr 5 20:36:03.125: INFO: Got endpoints: latency-svc-5lf4p [750.075049ms] + Apr 5 20:36:03.144: INFO: Created: latency-svc-s86t2 + Apr 5 20:36:03.177: INFO: Got endpoints: latency-svc-ls7zk [752.340247ms] + Apr 5 20:36:03.200: INFO: Created: latency-svc-q5rn6 + Apr 5 20:36:03.225: INFO: Got endpoints: latency-svc-5fhvj [748.408515ms] + Apr 5 20:36:03.243: INFO: Created: latency-svc-ztnxd + Apr 5 20:36:03.275: INFO: Got endpoints: latency-svc-gpsjr [748.248538ms] + Apr 5 20:36:03.292: INFO: Created: latency-svc-nrs2l + Apr 5 20:36:03.326: INFO: Got endpoints: latency-svc-wg55w [747.945633ms] + Apr 5 20:36:03.344: INFO: Created: latency-svc-twd5m + Apr 5 20:36:03.374: INFO: Got endpoints: latency-svc-7jhjt [750.360035ms] + Apr 5 20:36:03.394: INFO: Created: latency-svc-fcbn9 + Apr 5 20:36:03.429: INFO: Got endpoints: latency-svc-pzn5m [753.109477ms] + Apr 5 20:36:03.445: INFO: Created: latency-svc-7m7w5 + Apr 5 20:36:03.477: INFO: Got endpoints: latency-svc-nfsjk [750.502199ms] + Apr 5 20:36:03.496: INFO: Created: latency-svc-kbzhb + Apr 5 20:36:03.526: INFO: Got endpoints: latency-svc-4kj9f [750.453927ms] + Apr 5 20:36:03.547: INFO: Created: latency-svc-z4cxs + Apr 5 20:36:03.575: INFO: Got endpoints: latency-svc-2dtxf [748.041569ms] + Apr 5 20:36:03.591: INFO: Created: latency-svc-4752c + Apr 5 20:36:03.625: INFO: Got endpoints: latency-svc-kh47f [740.463693ms] + Apr 5 20:36:03.639: INFO: Created: latency-svc-bckc2 + Apr 5 20:36:03.674: INFO: Got endpoints: latency-svc-rf8fn [749.721914ms] + Apr 5 20:36:03.692: INFO: Created: latency-svc-hxg9n + Apr 5 20:36:03.725: INFO: Got endpoints: latency-svc-xwr4m [749.583132ms] + Apr 5 20:36:03.741: INFO: Created: latency-svc-m5p8r + Apr 5 20:36:03.776: INFO: Got endpoints: latency-svc-xxmzk [750.821854ms] + Apr 5 20:36:03.793: INFO: Created: latency-svc-blgbw + Apr 5 20:36:03.823: INFO: Got endpoints: latency-svc-xrwsz [748.392826ms] + Apr 5 20:36:03.841: INFO: Created: latency-svc-dcs4z + Apr 5 20:36:03.882: INFO: Got endpoints: latency-svc-s86t2 [756.088213ms] + Apr 5 20:36:03.898: INFO: Created: latency-svc-xt5n8 + Apr 5 20:36:03.926: INFO: Got endpoints: latency-svc-q5rn6 [748.528904ms] + Apr 5 20:36:03.941: INFO: Created: latency-svc-r6r4h + Apr 5 20:36:03.975: INFO: Got endpoints: latency-svc-ztnxd [749.826048ms] + Apr 5 20:36:03.990: INFO: Created: latency-svc-j5ljw + Apr 5 20:36:04.025: INFO: Got endpoints: latency-svc-nrs2l [750.177249ms] + Apr 5 20:36:04.042: INFO: Created: latency-svc-6wq82 + Apr 5 20:36:04.074: INFO: Got endpoints: latency-svc-twd5m [748.267152ms] + Apr 5 20:36:04.098: INFO: Created: latency-svc-b4t5c + Apr 5 20:36:04.125: INFO: Got endpoints: latency-svc-fcbn9 [750.178278ms] + Apr 5 20:36:04.141: INFO: Created: latency-svc-db697 + Apr 5 20:36:04.176: INFO: Got endpoints: latency-svc-7m7w5 [746.833731ms] + Apr 5 20:36:04.192: INFO: Created: latency-svc-5zjc4 + Apr 5 20:36:04.224: INFO: Got endpoints: latency-svc-kbzhb [746.887067ms] + Apr 5 20:36:04.241: INFO: Created: latency-svc-gk9z2 + Apr 5 20:36:04.274: INFO: Got endpoints: latency-svc-z4cxs [747.725756ms] + Apr 5 20:36:04.294: INFO: Created: latency-svc-bccrc + Apr 5 20:36:04.330: INFO: Got endpoints: latency-svc-4752c [754.740802ms] + Apr 5 20:36:04.347: INFO: Created: latency-svc-wz2bp + Apr 5 20:36:04.375: INFO: Got endpoints: latency-svc-bckc2 [750.838792ms] + Apr 5 20:36:04.392: INFO: Created: latency-svc-5wvp4 + Apr 5 20:36:04.424: INFO: Got endpoints: latency-svc-hxg9n [749.739501ms] + Apr 5 20:36:04.444: INFO: Created: latency-svc-bspq4 + Apr 5 20:36:04.474: INFO: Got endpoints: latency-svc-m5p8r [748.557785ms] + Apr 5 20:36:04.492: INFO: Created: latency-svc-pfxzs + Apr 5 20:36:04.527: INFO: Got endpoints: latency-svc-blgbw [750.216939ms] + Apr 5 20:36:04.549: INFO: Created: latency-svc-qzmkk + Apr 5 20:36:04.574: INFO: Got endpoints: latency-svc-dcs4z [750.808567ms] + Apr 5 20:36:04.592: INFO: Created: latency-svc-gt86h + Apr 5 20:36:04.626: INFO: Got endpoints: latency-svc-xt5n8 [744.055278ms] + Apr 5 20:36:04.645: INFO: Created: latency-svc-sr4jx + Apr 5 20:36:04.675: INFO: Got endpoints: latency-svc-r6r4h [749.466798ms] + Apr 5 20:36:04.692: INFO: Created: latency-svc-qzbfh + Apr 5 20:36:04.725: INFO: Got endpoints: latency-svc-j5ljw [749.768912ms] + Apr 5 20:36:04.742: INFO: Created: latency-svc-ft2k9 + Apr 5 20:36:04.775: INFO: Got endpoints: latency-svc-6wq82 [749.568565ms] + Apr 5 20:36:04.794: INFO: Created: latency-svc-js8b5 + Apr 5 20:36:04.826: INFO: Got endpoints: latency-svc-b4t5c [751.498576ms] + Apr 5 20:36:04.844: INFO: Created: latency-svc-pbv5l + Apr 5 20:36:04.874: INFO: Got endpoints: latency-svc-db697 [749.1858ms] + Apr 5 20:36:04.891: INFO: Created: latency-svc-q5rxz + Apr 5 20:36:04.926: INFO: Got endpoints: latency-svc-5zjc4 [749.32814ms] + Apr 5 20:36:04.943: INFO: Created: latency-svc-r8h5h + Apr 5 20:36:04.974: INFO: Got endpoints: latency-svc-gk9z2 [749.538119ms] + Apr 5 20:36:04.992: INFO: Created: latency-svc-qwnms + Apr 5 20:36:05.026: INFO: Got endpoints: latency-svc-bccrc [751.988031ms] + Apr 5 20:36:05.042: INFO: Created: latency-svc-kxb6n + Apr 5 20:36:05.076: INFO: Got endpoints: latency-svc-wz2bp [746.10658ms] + Apr 5 20:36:05.093: INFO: Created: latency-svc-j6jrd + Apr 5 20:36:05.125: INFO: Got endpoints: latency-svc-5wvp4 [748.797817ms] + Apr 5 20:36:05.141: INFO: Created: latency-svc-5bnzj + Apr 5 20:36:05.174: INFO: Got endpoints: latency-svc-bspq4 [749.839389ms] + Apr 5 20:36:05.192: INFO: Created: latency-svc-shrwq + Apr 5 20:36:05.225: INFO: Got endpoints: latency-svc-pfxzs [749.85596ms] + Apr 5 20:36:05.244: INFO: Created: latency-svc-ggg4m + Apr 5 20:36:05.278: INFO: Got endpoints: latency-svc-qzmkk [750.890033ms] + Apr 5 20:36:05.293: INFO: Created: latency-svc-xdplv + Apr 5 20:36:05.327: INFO: Got endpoints: latency-svc-gt86h [752.580616ms] + Apr 5 20:36:05.346: INFO: Created: latency-svc-bvc2j + Apr 5 20:36:05.376: INFO: Got endpoints: latency-svc-sr4jx [749.622952ms] + Apr 5 20:36:05.394: INFO: Created: latency-svc-2cc62 + Apr 5 20:36:05.425: INFO: Got endpoints: latency-svc-qzbfh [749.841496ms] + Apr 5 20:36:05.444: INFO: Created: latency-svc-gnmzz + Apr 5 20:36:05.476: INFO: Got endpoints: latency-svc-ft2k9 [751.17115ms] + Apr 5 20:36:05.495: INFO: Created: latency-svc-mrf66 + Apr 5 20:36:05.528: INFO: Got endpoints: latency-svc-js8b5 [752.600549ms] + Apr 5 20:36:05.546: INFO: Created: latency-svc-79529 + Apr 5 20:36:05.579: INFO: Got endpoints: latency-svc-pbv5l [752.68214ms] + Apr 5 20:36:05.601: INFO: Created: latency-svc-zg4s8 + Apr 5 20:36:05.626: INFO: Got endpoints: latency-svc-q5rxz [751.978931ms] + Apr 5 20:36:05.642: INFO: Created: latency-svc-gvfns + Apr 5 20:36:05.683: INFO: Got endpoints: latency-svc-r8h5h [757.501653ms] + Apr 5 20:36:05.716: INFO: Created: latency-svc-4mt7m + Apr 5 20:36:05.725: INFO: Got endpoints: latency-svc-qwnms [751.360878ms] + Apr 5 20:36:05.744: INFO: Created: latency-svc-xc47n + Apr 5 20:36:05.779: INFO: Got endpoints: latency-svc-kxb6n [752.485698ms] + Apr 5 20:36:05.806: INFO: Created: latency-svc-blctw + Apr 5 20:36:05.828: INFO: Got endpoints: latency-svc-j6jrd [751.743142ms] + Apr 5 20:36:05.843: INFO: Created: latency-svc-49nf8 + Apr 5 20:36:05.875: INFO: Got endpoints: latency-svc-5bnzj [749.760116ms] + Apr 5 20:36:05.894: INFO: Created: latency-svc-s7fpj + Apr 5 20:36:05.927: INFO: Got endpoints: latency-svc-shrwq [752.733945ms] + Apr 5 20:36:05.943: INFO: Created: latency-svc-csjxt + Apr 5 20:36:05.974: INFO: Got endpoints: latency-svc-ggg4m [749.111326ms] + Apr 5 20:36:05.996: INFO: Created: latency-svc-nd48n + Apr 5 20:36:06.023: INFO: Got endpoints: latency-svc-xdplv [745.210079ms] + Apr 5 20:36:06.041: INFO: Created: latency-svc-756c6 + Apr 5 20:36:06.074: INFO: Got endpoints: latency-svc-bvc2j [747.095849ms] + Apr 5 20:36:06.091: INFO: Created: latency-svc-xscc9 + Apr 5 20:36:06.126: INFO: Got endpoints: latency-svc-2cc62 [750.384898ms] + Apr 5 20:36:06.142: INFO: Created: latency-svc-dvx49 + Apr 5 20:36:06.174: INFO: Got endpoints: latency-svc-gnmzz [749.02678ms] + Apr 5 20:36:06.191: INFO: Created: latency-svc-9lw4c + Apr 5 20:36:06.225: INFO: Got endpoints: latency-svc-mrf66 [748.320346ms] + Apr 5 20:36:06.243: INFO: Created: latency-svc-5b5tb + Apr 5 20:36:06.275: INFO: Got endpoints: latency-svc-79529 [746.351921ms] + Apr 5 20:36:06.329: INFO: Got endpoints: latency-svc-zg4s8 [749.980318ms] + Apr 5 20:36:06.376: INFO: Got endpoints: latency-svc-gvfns [749.926672ms] + Apr 5 20:36:06.427: INFO: Got endpoints: latency-svc-4mt7m [743.67989ms] + Apr 5 20:36:06.474: INFO: Got endpoints: latency-svc-xc47n [748.700231ms] + Apr 5 20:36:06.526: INFO: Got endpoints: latency-svc-blctw [747.658236ms] + Apr 5 20:36:06.574: INFO: Got endpoints: latency-svc-49nf8 [746.623476ms] + Apr 5 20:36:06.624: INFO: Got endpoints: latency-svc-s7fpj [748.928419ms] + Apr 5 20:36:06.676: INFO: Got endpoints: latency-svc-csjxt [749.17074ms] + Apr 5 20:36:06.726: INFO: Got endpoints: latency-svc-nd48n [752.308833ms] + Apr 5 20:36:06.775: INFO: Got endpoints: latency-svc-756c6 [751.23747ms] + Apr 5 20:36:06.825: INFO: Got endpoints: latency-svc-xscc9 [750.985351ms] + Apr 5 20:36:06.884: INFO: Got endpoints: latency-svc-dvx49 [757.942774ms] + Apr 5 20:36:06.924: INFO: Got endpoints: latency-svc-9lw4c [749.758259ms] + Apr 5 20:36:06.976: INFO: Got endpoints: latency-svc-5b5tb [751.172792ms] + Apr 5 20:36:06.977: INFO: Latencies: [31.507667ms 46.151923ms 55.468397ms 74.067848ms 93.320001ms 108.658995ms 134.666064ms 137.834001ms 156.604161ms 175.625156ms 192.206107ms 204.069014ms 223.206458ms 225.135212ms 228.225998ms 229.84011ms 234.728582ms 235.186951ms 236.417335ms 237.253881ms 238.438218ms 240.505123ms 240.868607ms 242.793377ms 244.482994ms 245.720723ms 246.460046ms 246.898423ms 248.38867ms 248.668606ms 249.752365ms 250.548134ms 251.102534ms 251.378764ms 254.127977ms 254.373368ms 254.525575ms 255.246826ms 256.932392ms 257.756907ms 259.319656ms 260.085072ms 260.507243ms 276.302643ms 296.193351ms 330.345435ms 359.407777ms 398.222132ms 431.637077ms 454.417844ms 498.438243ms 524.7809ms 561.177537ms 597.530288ms 617.454794ms 655.670136ms 694.357207ms 729.978711ms 740.463693ms 742.510555ms 743.67989ms 743.871666ms 744.055278ms 745.210079ms 746.10658ms 746.351921ms 746.623476ms 746.64138ms 746.708076ms 746.764238ms 746.833731ms 746.887067ms 747.095849ms 747.234733ms 747.256086ms 747.455939ms 747.514561ms 747.658236ms 747.676699ms 747.725756ms 747.929227ms 747.945633ms 748.001371ms 748.041569ms 748.107149ms 748.248538ms 748.267152ms 748.271327ms 748.313789ms 748.320346ms 748.392826ms 748.408515ms 748.528904ms 748.546329ms 748.557785ms 748.700231ms 748.744096ms 748.768169ms 748.797817ms 748.89719ms 748.921582ms 748.928419ms 748.999689ms 749.02678ms 749.074056ms 749.111326ms 749.17074ms 749.176988ms 749.1858ms 749.32814ms 749.365568ms 749.379182ms 749.399181ms 749.466798ms 749.538119ms 749.568565ms 749.583132ms 749.622013ms 749.622952ms 749.677782ms 749.684112ms 749.720533ms 749.721914ms 749.737189ms 749.739501ms 749.758259ms 749.760116ms 749.768912ms 749.806112ms 749.826048ms 749.839389ms 749.841496ms 749.85596ms 749.864205ms 749.926672ms 749.980318ms 749.996438ms 750.075049ms 750.177249ms 750.178278ms 750.216939ms 750.236765ms 750.248325ms 750.283348ms 750.325983ms 750.360035ms 750.384898ms 750.389281ms 750.401687ms 750.453927ms 750.459546ms 750.502199ms 750.604708ms 750.636622ms 750.671214ms 750.802333ms 750.808567ms 750.81552ms 750.821854ms 750.838792ms 750.878376ms 750.890033ms 750.942656ms 750.949882ms 750.985351ms 751.005055ms 751.118758ms 751.165621ms 751.17115ms 751.172792ms 751.23747ms 751.293022ms 751.358906ms 751.360878ms 751.498576ms 751.509329ms 751.560737ms 751.743142ms 751.978931ms 751.988031ms 752.096356ms 752.163018ms 752.308833ms 752.340247ms 752.347751ms 752.481377ms 752.485698ms 752.580616ms 752.600549ms 752.68214ms 752.733945ms 752.836969ms 753.104938ms 753.109477ms 754.740802ms 755.347254ms 756.088213ms 756.326575ms 757.501653ms 757.942774ms] + Apr 5 20:36:06.977: INFO: 50 %ile: 748.921582ms + Apr 5 20:36:06.977: INFO: 90 %ile: 752.096356ms + Apr 5 20:36:06.977: INFO: 99 %ile: 757.501653ms + Apr 5 20:36:06.977: INFO: Total sample count: 200 + [AfterEach] [sig-network] Service endpoints latency + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:06.978: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-network] Service endpoints latency + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-network] Service endpoints latency + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-network] Service endpoints latency + tear down framework | framework.go:193 + STEP: Destroying namespace "svc-latency-3797" for this suite. 04/05/23 20:36:06.987 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[sig-node] Probing container + should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:169 +[BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:06.996 +Apr 5 20:36:06.996: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename container-probe 04/05/23 20:36:06.997 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:07.014 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:07.016 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 +[It] should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:169 +STEP: Creating pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 in namespace container-probe-5814 04/05/23 20:36:07.019 +Apr 5 20:36:07.027: INFO: Waiting up to 5m0s for pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552" in namespace "container-probe-5814" to be "not pending" +Apr 5 20:36:07.029: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 2.902482ms +Apr 5 20:36:09.034: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007673243s +Apr 5 20:36:11.034: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007840491s +Apr 5 20:36:13.033: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Running", Reason="", readiness=true. Elapsed: 6.006739302s +Apr 5 20:36:13.033: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552" satisfied condition "not pending" +Apr 5 20:36:13.033: INFO: Started pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 in namespace container-probe-5814 +STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 20:36:13.033 +Apr 5 20:36:13.042: INFO: Initial restart count of pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 is 0 +Apr 5 20:36:29.084: INFO: Restart count of pod container-probe-5814/liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 is now 1 (16.041722302s elapsed) +STEP: deleting the pod 04/05/23 20:36:29.084 +[AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:29.095: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 +STEP: Destroying namespace "container-probe-5814" for this suite. 04/05/23 20:36:29.102 +------------------------------ +• [SLOW TEST] [22.120 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/common/node/container_probe.go:169 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] Probing container + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:06.996 + Apr 5 20:36:06.996: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename container-probe 04/05/23 20:36:06.997 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:07.014 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:07.016 + [BeforeEach] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:63 + [It] should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/common/node/container_probe.go:169 + STEP: Creating pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 in namespace container-probe-5814 04/05/23 20:36:07.019 + Apr 5 20:36:07.027: INFO: Waiting up to 5m0s for pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552" in namespace "container-probe-5814" to be "not pending" + Apr 5 20:36:07.029: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 2.902482ms + Apr 5 20:36:09.034: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007673243s + Apr 5 20:36:11.034: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Pending", Reason="", readiness=false. Elapsed: 4.007840491s + Apr 5 20:36:13.033: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552": Phase="Running", Reason="", readiness=true. Elapsed: 6.006739302s + Apr 5 20:36:13.033: INFO: Pod "liveness-35d225b5-e86f-455a-87d6-7cd4ca293552" satisfied condition "not pending" + Apr 5 20:36:13.033: INFO: Started pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 in namespace container-probe-5814 + STEP: checking the pod's current state and verifying that restartCount is present 04/05/23 20:36:13.033 + Apr 5 20:36:13.042: INFO: Initial restart count of pod liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 is 0 + Apr 5 20:36:29.084: INFO: Restart count of pod container-probe-5814/liveness-35d225b5-e86f-455a-87d6-7cd4ca293552 is now 1 (16.041722302s elapsed) + STEP: deleting the pod 04/05/23 20:36:29.084 + [AfterEach] [sig-node] Probing container + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:29.095: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] Probing container + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] Probing container + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] Probing container + tear down framework | framework.go:193 + STEP: Destroying namespace "container-probe-5814" for this suite. 04/05/23 20:36:29.102 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates that NodeSelector is respected if not matching [Conformance] + test/e2e/scheduling/predicates.go:443 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:29.151 +Apr 5 20:36:29.151: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename sched-pred 04/05/23 20:36:29.152 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:29.178 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:29.181 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 +Apr 5 20:36:29.185: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Apr 5 20:36:29.197: INFO: Waiting for terminating namespaces to be deleted... +Apr 5 20:36:29.202: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test +Apr 5 20:36:29.217: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container cert-manager-controller ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container cert-manager-cainjector ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container cert-manager-webhook ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container controller ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container kube-sonobuoy ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 20:36:29.217: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 20:36:29.217: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test +Apr 5 20:36:29.239: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 20:36:29.239: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: Container systemd-logs ready: true, restart count 0 +Apr 5 20:36:29.239: INFO: +Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test +Apr 5 20:36:29.252: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.252: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.252: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.253: INFO: Container credential-provider ready: true, restart count 0 +Apr 5 20:36:29.253: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.253: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.253: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 +Apr 5 20:36:29.253: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.253: INFO: Container cilium-agent ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.254: INFO: Container cilium-operator ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.254: INFO: Container kube-proxy ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) +Apr 5 20:36:29.254: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) +Apr 5 20:36:29.254: INFO: Container liveness-probe ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: Container node-driver-registrar ready: true, restart count 0 +Apr 5 20:36:29.254: INFO: Container vsphere-csi-node ready: true, restart count 0 +Apr 5 20:36:29.255: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 20:36:29.255: INFO: Container e2e ready: true, restart count 0 +Apr 5 20:36:29.255: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 20:36:29.255: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) +Apr 5 20:36:29.255: INFO: Container sonobuoy-worker ready: true, restart count 0 +Apr 5 20:36:29.255: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates that NodeSelector is respected if not matching [Conformance] + test/e2e/scheduling/predicates.go:443 +STEP: Trying to schedule Pod with nonempty NodeSelector. 04/05/23 20:36:29.255 +STEP: Considering event: +Type = [Warning], Name = [restricted-pod.1753244ab977f2ab], Reason = [FailedScheduling], Message = [0/6 nodes are available: 3 node(s) didn't match Pod's node affinity/selector, 3 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }. preemption: 0/6 nodes are available: 6 Preemption is not helpful for scheduling..] 04/05/23 20:36:29.305 +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:30.303: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 +STEP: Destroying namespace "sched-pred-4937" for this suite. 04/05/23 20:36:30.308 +------------------------------ +• [1.165 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates that NodeSelector is respected if not matching [Conformance] + test/e2e/scheduling/predicates.go:443 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:29.151 + Apr 5 20:36:29.151: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename sched-pred 04/05/23 20:36:29.152 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:29.178 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:29.181 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:97 + Apr 5 20:36:29.185: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready + Apr 5 20:36:29.197: INFO: Waiting for terminating namespaces to be deleted... + Apr 5 20:36:29.202: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-jf7bt before test + Apr 5 20:36:29.217: INFO: capi-kubeadm-bootstrap-controller-manager-7fdf56bcf7-czcj7 from capi-kubeadm-bootstrap-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: capi-kubeadm-control-plane-controller-manager-7594c49d98-vtpd7 from capi-kubeadm-control-plane-system started at 2023-04-05 16:24:38 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: capv-controller-manager-65f99487dc-rcqmt from capv-system started at 2023-04-05 16:24:45 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: cert-manager-bbb4c6d55-2m7x2 from cert-manager started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container cert-manager-controller ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: cert-manager-cainjector-7cd794bf67-2k8p4 from cert-manager started at 2023-04-05 16:23:53 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container cert-manager-cainjector ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: cert-manager-webhook-585cdf6cfc-pnqnz from cert-manager started at 2023-04-05 16:23:54 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container cert-manager-webhook ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: ecr-credential-provider-package-rgvfg from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: eks-anywhere-packages-64c7bf66f-24mx5 from eksa-packages started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container controller ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: cilium-85qd4 from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: kube-proxy-9mnqq from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: vsphere-cloud-controller-manager-45g5k from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: vsphere-csi-node-dffrg from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: sonobuoy from sonobuoy started at 2023-04-05 18:35:49 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container kube-sonobuoy ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-6kb7d from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 20:36:29.217: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 20:36:29.217: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-rj4zb before test + Apr 5 20:36:29.239: INFO: ecr-credential-provider-package-2hcn7 from eksa-packages started at 2023-04-05 19:13:30 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: cilium-w5g8r from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: kube-proxy-xj7ps from kube-system started at 2023-04-05 16:21:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: vsphere-cloud-controller-manager-zgvjz from kube-system started at 2023-04-05 19:13:29 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: vsphere-csi-node-8vn9c from kube-system started at 2023-04-05 16:21:43 +0000 UTC (3 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-2lthp from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 20:36:29.239: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: Container systemd-logs ready: true, restart count 0 + Apr 5 20:36:29.239: INFO: + Logging pods the apiserver thinks is on node ttneyla26-md-0-8474989c68-wbqh5 before test + Apr 5 20:36:29.252: INFO: capi-controller-manager-756894d74c-gpn4m from capi-system started at 2023-04-05 16:24:18 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.252: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.252: INFO: ecr-credential-provider-package-chkwr from eksa-packages started at 2023-04-05 16:35:44 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.253: INFO: Container credential-provider ready: true, restart count 0 + Apr 5 20:36:29.253: INFO: eksa-controller-manager-7759b656fd-gsjmc from eksa-system started at 2023-04-05 16:32:43 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.253: INFO: etcdadm-bootstrap-provider-controller-manager-69456755db-s8jml from etcdadm-bootstrap-provider-system started at 2023-04-05 18:39:05 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.253: INFO: etcdadm-controller-controller-manager-855d55b7c7-p5w5n from etcdadm-controller-system started at 2023-04-05 16:24:32 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.253: INFO: Container manager ready: true, restart count 0 + Apr 5 20:36:29.253: INFO: cilium-kv8fp from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.253: INFO: Container cilium-agent ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: cilium-operator-77fff79788-z92jx from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.254: INFO: Container cilium-operator ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: kube-proxy-w4cs9 from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.254: INFO: Container kube-proxy ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: vsphere-cloud-controller-manager-lbm9d from kube-system started at 2023-04-05 16:21:26 +0000 UTC (1 container statuses recorded) + Apr 5 20:36:29.254: INFO: Container vsphere-cloud-controller-manager ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: vsphere-csi-node-xggld from kube-system started at 2023-04-05 16:21:26 +0000 UTC (3 container statuses recorded) + Apr 5 20:36:29.254: INFO: Container liveness-probe ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: Container node-driver-registrar ready: true, restart count 0 + Apr 5 20:36:29.254: INFO: Container vsphere-csi-node ready: true, restart count 0 + Apr 5 20:36:29.255: INFO: sonobuoy-e2e-job-3c6b6a7689374910 from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 20:36:29.255: INFO: Container e2e ready: true, restart count 0 + Apr 5 20:36:29.255: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 20:36:29.255: INFO: sonobuoy-systemd-logs-daemon-set-3ed0a530e3d6412a-54f5b from sonobuoy started at 2023-04-05 18:35:58 +0000 UTC (2 container statuses recorded) + Apr 5 20:36:29.255: INFO: Container sonobuoy-worker ready: true, restart count 0 + Apr 5 20:36:29.255: INFO: Container systemd-logs ready: true, restart count 0 + [It] validates that NodeSelector is respected if not matching [Conformance] + test/e2e/scheduling/predicates.go:443 + STEP: Trying to schedule Pod with nonempty NodeSelector. 04/05/23 20:36:29.255 + STEP: Considering event: + Type = [Warning], Name = [restricted-pod.1753244ab977f2ab], Reason = [FailedScheduling], Message = [0/6 nodes are available: 3 node(s) didn't match Pod's node affinity/selector, 3 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }. preemption: 0/6 nodes are available: 6 Preemption is not helpful for scheduling..] 04/05/23 20:36:29.305 + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:30.303: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:88 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-scheduling] SchedulerPredicates [Serial] + tear down framework | framework.go:193 + STEP: Destroying namespace "sched-pred-4937" for this suite. 04/05/23 20:36:30.308 + << End Captured GinkgoWriter Output +------------------------------ +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/common/storage/downwardapi_volume.go:249 +[BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:30.32 +Apr 5 20:36:30.320: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename downward-api 04/05/23 20:36:30.321 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:30.337 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:30.339 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 +[It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:249 +STEP: Creating a pod to test downward API volume plugin 04/05/23 20:36:30.342 +Apr 5 20:36:30.351: INFO: Waiting up to 5m0s for pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae" in namespace "downward-api-2148" to be "Succeeded or Failed" +Apr 5 20:36:30.354: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.667692ms +Apr 5 20:36:32.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008442346s +Apr 5 20:36:34.358: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006532833s +Apr 5 20:36:36.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.008451177s +STEP: Saw pod success 04/05/23 20:36:36.36 +Apr 5 20:36:36.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae" satisfied condition "Succeeded or Failed" +Apr 5 20:36:36.365: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae container client-container: +STEP: delete the pod 04/05/23 20:36:36.371 +Apr 5 20:36:36.383: INFO: Waiting for pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae to disappear +Apr 5 20:36:36.386: INFO: Pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:36.386: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 +STEP: Destroying namespace "downward-api-2148" for this suite. 04/05/23 20:36:36.391 +------------------------------ +• [SLOW TEST] [6.078 seconds] +[sig-storage] Downward API volume +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/common/storage/downwardapi_volume.go:249 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Downward API volume + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:30.32 + Apr 5 20:36:30.320: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename downward-api 04/05/23 20:36:30.321 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:30.337 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:30.339 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:44 + [It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/common/storage/downwardapi_volume.go:249 + STEP: Creating a pod to test downward API volume plugin 04/05/23 20:36:30.342 + Apr 5 20:36:30.351: INFO: Waiting up to 5m0s for pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae" in namespace "downward-api-2148" to be "Succeeded or Failed" + Apr 5 20:36:30.354: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.667692ms + Apr 5 20:36:32.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008442346s + Apr 5 20:36:34.358: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Pending", Reason="", readiness=false. Elapsed: 4.006532833s + Apr 5 20:36:36.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.008451177s + STEP: Saw pod success 04/05/23 20:36:36.36 + Apr 5 20:36:36.360: INFO: Pod "downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae" satisfied condition "Succeeded or Failed" + Apr 5 20:36:36.365: INFO: Trying to get logs from node ttneyla26-md-0-8474989c68-rj4zb pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae container client-container: + STEP: delete the pod 04/05/23 20:36:36.371 + Apr 5 20:36:36.383: INFO: Waiting for pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae to disappear + Apr 5 20:36:36.386: INFO: Pod downwardapi-volume-9065ffc6-3ee0-4ffc-9fa4-4a290859deae no longer exists + [AfterEach] [sig-storage] Downward API volume + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:36.386: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Downward API volume + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Downward API volume + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Downward API volume + tear down framework | framework.go:193 + STEP: Destroying namespace "downward-api-2148" for this suite. 04/05/23 20:36:36.391 + << End Captured GinkgoWriter Output +------------------------------ +SSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/rc.go:67 +[BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:36.403 +Apr 5 20:36:36.403: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename replication-controller 04/05/23 20:36:36.404 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:36.42 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:36.423 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 +[It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/rc.go:67 +STEP: Creating replication controller my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119 04/05/23 20:36:36.427 +Apr 5 20:36:36.437: INFO: Pod name my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Found 0 pods out of 1 +Apr 5 20:36:41.441: INFO: Pod name my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Found 1 pods out of 1 +Apr 5 20:36:41.441: INFO: Ensuring all pods for ReplicationController "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119" are running +Apr 5 20:36:41.441: INFO: Waiting up to 5m0s for pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" in namespace "replication-controller-9071" to be "running" +Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q": Phase="Running", Reason="", readiness=true. Elapsed: 3.714522ms +Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" satisfied condition "running" +Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:36 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:40 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:40 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:36 +0000 UTC Reason: Message:}]) +Apr 5 20:36:41.445: INFO: Trying to dial the pod +Apr 5 20:36:46.459: INFO: Controller my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Got expected result from replica 1 [my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q]: "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q", 1 of 1 required successes so far +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:46.460: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 +STEP: Destroying namespace "replication-controller-9071" for this suite. 04/05/23 20:36:46.466 +------------------------------ +• [SLOW TEST] [10.070 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/apps/rc.go:67 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-apps] ReplicationController + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:36.403 + Apr 5 20:36:36.403: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename replication-controller 04/05/23 20:36:36.404 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:36.42 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:36.423 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:31 + [BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:57 + [It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/apps/rc.go:67 + STEP: Creating replication controller my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119 04/05/23 20:36:36.427 + Apr 5 20:36:36.437: INFO: Pod name my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Found 0 pods out of 1 + Apr 5 20:36:41.441: INFO: Pod name my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Found 1 pods out of 1 + Apr 5 20:36:41.441: INFO: Ensuring all pods for ReplicationController "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119" are running + Apr 5 20:36:41.441: INFO: Waiting up to 5m0s for pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" in namespace "replication-controller-9071" to be "running" + Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q": Phase="Running", Reason="", readiness=true. Elapsed: 3.714522ms + Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" satisfied condition "running" + Apr 5 20:36:41.445: INFO: Pod "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:36 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:40 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:40 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2023-04-05 20:36:36 +0000 UTC Reason: Message:}]) + Apr 5 20:36:41.445: INFO: Trying to dial the pod + Apr 5 20:36:46.459: INFO: Controller my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119: Got expected result from replica 1 [my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q]: "my-hostname-basic-d1b254ea-34a8-4992-a521-00bab01fd119-x6w4q", 1 of 1 required successes so far + [AfterEach] [sig-apps] ReplicationController + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:46.460: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-apps] ReplicationController + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-apps] ReplicationController + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-apps] ReplicationController + tear down framework | framework.go:193 + STEP: Destroying namespace "replication-controller-9071" for this suite. 04/05/23 20:36:46.466 + << End Captured GinkgoWriter Output +------------------------------ +SSSS +------------------------------ +[sig-storage] Secrets + should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/secrets_volume.go:386 +[BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:46.474 +Apr 5 20:36:46.474: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename secrets 04/05/23 20:36:46.475 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:46.491 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:46.494 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 +[It] should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/secrets_volume.go:386 +[AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:46.536: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 +STEP: Destroying namespace "secrets-1345" for this suite. 04/05/23 20:36:46.542 +------------------------------ +• [0.077 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/secrets_volume.go:386 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-storage] Secrets + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:46.474 + Apr 5 20:36:46.474: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename secrets 04/05/23 20:36:46.475 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:46.491 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:46.494 + [BeforeEach] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:31 + [It] should be immutable if `immutable` field is set [Conformance] + test/e2e/common/storage/secrets_volume.go:386 + [AfterEach] [sig-storage] Secrets + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:46.536: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-storage] Secrets + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-storage] Secrets + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-storage] Secrets + tear down framework | framework.go:193 + STEP: Destroying namespace "secrets-1345" for this suite. 04/05/23 20:36:46.542 + << End Captured GinkgoWriter Output +------------------------------ +SS +------------------------------ +[sig-node] RuntimeClass + should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:156 +[BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 +STEP: Creating a kubernetes client 04/05/23 20:36:46.554 +Apr 5 20:36:46.554: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 +STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:36:46.555 +STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:46.57 +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:46.573 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 +[It] should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:156 +STEP: Deleting RuntimeClass runtimeclass-1134-delete-me 04/05/23 20:36:46.581 +STEP: Waiting for the RuntimeClass to disappear 04/05/23 20:36:46.588 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 +Apr 5 20:36:46.598: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +[DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 +[DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 +[DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 +STEP: Destroying namespace "runtimeclass-1134" for this suite. 04/05/23 20:36:46.605 +------------------------------ +• [0.058 seconds] +[sig-node] RuntimeClass +test/e2e/common/node/framework.go:23 + should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:156 + + Begin Captured GinkgoWriter Output >> + [BeforeEach] [sig-node] RuntimeClass + set up framework | framework.go:178 + STEP: Creating a kubernetes client 04/05/23 20:36:46.554 + Apr 5 20:36:46.554: INFO: >>> kubeConfig: /tmp/kubeconfig-2619149764 + STEP: Building a namespace api object, basename runtimeclass 04/05/23 20:36:46.555 + STEP: Waiting for a default service account to be provisioned in namespace 04/05/23 20:36:46.57 + STEP: Waiting for kube-root-ca.crt to be provisioned in namespace 04/05/23 20:36:46.573 + [BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:31 + [It] should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/common/node/runtimeclass.go:156 + STEP: Deleting RuntimeClass runtimeclass-1134-delete-me 04/05/23 20:36:46.581 + STEP: Waiting for the RuntimeClass to disappear 04/05/23 20:36:46.588 + [AfterEach] [sig-node] RuntimeClass + test/e2e/framework/node/init/init.go:32 + Apr 5 20:36:46.598: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready + [DeferCleanup (Each)] [sig-node] RuntimeClass + test/e2e/framework/metrics/init/init.go:33 + [DeferCleanup (Each)] [sig-node] RuntimeClass + dump namespaces | framework.go:196 + [DeferCleanup (Each)] [sig-node] RuntimeClass + tear down framework | framework.go:193 + STEP: Destroying namespace "runtimeclass-1134" for this suite. 04/05/23 20:36:46.605 + << End Captured GinkgoWriter Output +------------------------------ +S +------------------------------ +[SynchronizedAfterSuite] +test/e2e/e2e.go:88 +[SynchronizedAfterSuite] TOP-LEVEL + test/e2e/e2e.go:88 +[SynchronizedAfterSuite] TOP-LEVEL + test/e2e/e2e.go:88 +Apr 5 20:36:46.616: INFO: Running AfterSuite actions on node 1 +Apr 5 20:36:46.616: INFO: Skipping dumping logs from cluster +------------------------------ +[SynchronizedAfterSuite] PASSED [0.000 seconds] +[SynchronizedAfterSuite] +test/e2e/e2e.go:88 + + Begin Captured GinkgoWriter Output >> + [SynchronizedAfterSuite] TOP-LEVEL + test/e2e/e2e.go:88 + [SynchronizedAfterSuite] TOP-LEVEL + test/e2e/e2e.go:88 + Apr 5 20:36:46.616: INFO: Running AfterSuite actions on node 1 + Apr 5 20:36:46.616: INFO: Skipping dumping logs from cluster + << End Captured GinkgoWriter Output +------------------------------ +[ReportAfterSuite] Kubernetes e2e suite report +test/e2e/e2e_test.go:153 +[ReportAfterSuite] TOP-LEVEL + test/e2e/e2e_test.go:153 +------------------------------ +[ReportAfterSuite] PASSED [0.000 seconds] +[ReportAfterSuite] Kubernetes e2e suite report +test/e2e/e2e_test.go:153 + + Begin Captured GinkgoWriter Output >> + [ReportAfterSuite] TOP-LEVEL + test/e2e/e2e_test.go:153 + << End Captured GinkgoWriter Output +------------------------------ +[ReportAfterSuite] Kubernetes e2e JUnit report +test/e2e/framework/test_context.go:529 +[ReportAfterSuite] TOP-LEVEL + test/e2e/framework/test_context.go:529 +------------------------------ +[ReportAfterSuite] PASSED [0.133 seconds] +[ReportAfterSuite] Kubernetes e2e JUnit report +test/e2e/framework/test_context.go:529 + + Begin Captured GinkgoWriter Output >> + [ReportAfterSuite] TOP-LEVEL + test/e2e/framework/test_context.go:529 + << End Captured GinkgoWriter Output +------------------------------ + +Ran 368 of 7069 Specs in 7211.861 seconds +SUCCESS! -- 368 Passed | 0 Failed | 0 Pending | 6701 Skipped +PASS + +Ginkgo ran 1 suite in 2h0m12.493131788s +Test Suite Passed +You're using deprecated Ginkgo functionality: +============================================= + --noColor is deprecated, use --no-color instead + Learn more at: https://onsi.github.io/ginkgo/MIGRATING_TO_V2#changed-command-line-flags + +To silence deprecations that can be silenced set the following environment variable: + ACK_GINKGO_DEPRECATIONS=2.4.0 + diff --git a/v1.26/eks-a/junit_01.xml b/v1.26/eks-a/junit_01.xml new file mode 100644 index 0000000000..6e5d9f5aa9 --- /dev/null +++ b/v1.26/eks-a/junit_01.xml @@ -0,0 +1,20499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file